import { HTMLAttributes } from 'react'; /** * Card family — a generic, token-only surface container (shadcn grammar). * * Every part is a bare styled `
` with `forwardRef` + full * `HTMLAttributes` passthrough and NO semantic props * (no variant/padding/onClick/hoverable) — the legacy `@nar-bus/lena-ui-shared` * Card the MDM call sites consume is a pure className surface (0 semantic-prop * usage across the family's 82 tags / 16 files — 22 of them bare ``), so * this is a drop-in for `{ Card, CardHeader, CardTitle, CardContent }` (separate * exports, not compound). Padding lives on the sub-parts * (header/content/footer), matching shadcn's composition so a bare * `` renders * with correct spacing. * * This is distinct from `KpiCard` (rich hero KPI) and the glass `DetailTile` — * Card is the plain general-purpose surface. */ export type CardProps = HTMLAttributes; export declare const Card: import('react').ForwardRefExoticComponent>; export declare const CardHeader: import('react').ForwardRefExoticComponent>; export declare const CardTitle: import('react').ForwardRefExoticComponent>; export declare const CardDescription: import('react').ForwardRefExoticComponent>; export declare const CardContent: import('react').ForwardRefExoticComponent>; export declare const CardFooter: import('react').ForwardRefExoticComponent>; /** Right-aligned action slot for a CardHeader (e.g. a menu button). */ export declare const CardAction: import('react').ForwardRefExoticComponent>; //# sourceMappingURL=Card.d.ts.map