import * as react from 'react'; import { ReactNode } from 'react'; interface StructuredCardProps { title: ReactNode; /** Trailing header content — change chip, buttons, badge, etc. */ actions?: ReactNode; contentClassName?: string; children: ReactNode; } /** * `Card` + `CardHeader` + `CardTitle` + `CardContent` composed together, with * `structured` set explicitly rather than relying on `Card`'s auto-detection — * safe to render from a Server Component and pass across a Client boundary. */ declare const StructuredCard: react.ForwardRefExoticComponent>; export { StructuredCard, type StructuredCardProps };