import React from 'react'; export interface CardProps extends React.HTMLAttributes { /** * The card content */ children: React.ReactNode; /** * Optional header content */ header?: React.ReactNode; /** * Optional footer content */ footer?: React.ReactNode; /** * Whether the card has a border */ bordered?: boolean; /** * The padding size */ padding?: 'sm' | 'md' | 'lg'; } /** * Card component for content containers * * @example * ```tsx * Content here * Large card with border * ``` */ export declare const Card: React.ForwardRefExoticComponent>; //# sourceMappingURL=Card.d.ts.map