/** * Paper card — hairline border, 10px radius, whispered shadow. `jade` adds the jade top rule * reserved for the view's key card (e.g. the Focus card). */ export interface CardProps { /** Caslon title */ title?: React.ReactNode; /** Small uppercase label above the title */ overline?: string; /** Right-aligned header actions (IconButtons) */ actions?: React.ReactNode; /** Footer row below a hairline */ footer?: React.ReactNode; /** Jade top rule — one per view @default false */ jade?: boolean; /** Remove body padding (tables, charts) @default false */ flush?: boolean; children?: React.ReactNode; style?: React.CSSProperties; } export declare function Card(props: CardProps): JSX.Element;