import * as React from 'react'; /** * CardProps - Native div attributes for the Card container. * @property {string} [className] - Additional CSS classes to apply to the card. * @property {React.ReactNode} [children] - The content of the card. */ export type CardProps = React.HTMLAttributes; /** * Card - A surface component to group related content. * @returns {JSX.Element} The rendered Card component. */ declare const Card: React.ForwardRefExoticComponent>; /** * CardHeader - Top section typically containing the title and actions. * @returns {JSX.Element} The rendered CardHeader component. */ declare const CardHeader: React.ForwardRefExoticComponent & React.RefAttributes>; /** * CardTitle - Title area inside the header. * @returns {JSX.Element} The rendered CardTitle component. */ declare const CardTitle: React.ForwardRefExoticComponent & React.RefAttributes>; /** * CardDescription - Secondary text under the title. * @returns {JSX.Element} The rendered CardDescription component. */ declare const CardDescription: React.ForwardRefExoticComponent & React.RefAttributes>; /** * CardContent - Main content area of the card. * @returns {JSX.Element} The rendered CardContent component. */ declare const CardContent: React.ForwardRefExoticComponent & React.RefAttributes>; /** * CardFooter - Bottom area for actions or summary. * @returns {JSX.Element} The rendered CardFooter component. */ declare const CardFooter: React.ForwardRefExoticComponent & React.RefAttributes>; export { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, }; //# sourceMappingURL=card.d.ts.map