import * as React from 'react';

/**
 * NoteCard — from @kuppwest/apple-clean@0.1.0.
 */
export interface NoteCardProps {
  /** Bold 19px heading, e.g. "Zur Anhängerkupplung". */
  title: string;
  /** Muted body copy with the caveats. */
  children: React.ReactNode;
  /** Tiny uppercase label above the document list, e.g. "Einbauanleitungen · 5 PDF-Dateien". */
  docsTitle?: string;
  /** Document links rendered as white rounded rows (`.kwac-doclist`), opened in a new tab. */
  docs?: NoteDoc[];
}

export declare const NoteCard: React.ComponentType<NoteCardProps>;
