import { HTMLAttributes } from 'react';
declare const CardRoot: import('react').ForwardRefExoticComponent, "className"> & import('react').RefAttributes>;
declare const CardHeader: import('react').ForwardRefExoticComponent, "className"> & import('react').RefAttributes>;
declare const CardTitle: import('react').ForwardRefExoticComponent, "className"> & import('react').RefAttributes>;
declare const CardDescription: import('react').ForwardRefExoticComponent, "className"> & import('react').RefAttributes>;
declare const CardContent: import('react').ForwardRefExoticComponent, "className"> & import('react').RefAttributes>;
declare const CardFooter: import('react').ForwardRefExoticComponent, "className"> & import('react').RefAttributes>;
type CardComponent = typeof CardRoot & {
Header: typeof CardHeader;
Footer: typeof CardFooter;
Title: typeof CardTitle;
Description: typeof CardDescription;
Content: typeof CardContent;
};
declare const Card: CardComponent;
export { Card };
export type { CardComponent };