import { CardProps, CardSlotProps } from './Card.types'; declare const _Card: import('react').ForwardRefExoticComponent>; declare const CardHeader: import('react').NamedExoticComponent; declare const CardContent: import('react').NamedExoticComponent; declare const CardFooter: import('react').NamedExoticComponent; declare const Card: typeof _Card & { Header: typeof CardHeader; Content: typeof CardContent; Footer: typeof CardFooter; }; export default Card; export { CardHeader, CardContent, CardFooter }; export type { CardProps, CardSlotProps } from './Card.types';