import * as React from "react"; /** * Props for the ZeroShot Card component (Config API mode). * * @example Compositional API: * ```tsx * * * Account * Manage your account settings. * * ... * * * ``` * * @example Config API (AI-optimized): * ```tsx * Save} * > * {content} * * ``` */ export interface CardProps extends React.HTMLAttributes { /** * Config API: Renders a CardTitle inside a CardHeader. * @example ... */ title?: string; /** * Config API: Renders a CardDescription inside the CardHeader. * Only rendered when `title` is also provided. * @example ... */ description?: string; /** * Config API: Renders content inside a CardFooter. * @example Save}>... */ footer?: React.ReactNode; } declare const Card: React.MemoExoticComponent>>; declare const CardHeader: React.MemoExoticComponent & React.RefAttributes>>; declare const CardTitle: React.MemoExoticComponent & React.RefAttributes>>; declare const CardDescription: React.MemoExoticComponent & React.RefAttributes>>; declare const CardContent: React.MemoExoticComponent & React.RefAttributes>>; declare const CardFooter: React.MemoExoticComponent & React.RefAttributes>>; export { Card, CardHeader, CardFooter, CardTitle, CardDescription, CardContent }; //# sourceMappingURL=card.d.ts.map