import React from 'react'; export type CardProps = React.HTMLAttributes; type CardRootComponent = React.ForwardRefExoticComponent & React.RefAttributes>; declare const CardRoot: CardRootComponent; export type CardHeaderProps = React.HTMLAttributes; type CardHeaderComponent = React.ForwardRefExoticComponent & React.RefAttributes>; declare const CardHeader: CardHeaderComponent; export type CardTitleProps = React.HTMLAttributes; type CardTitleComponent = React.ForwardRefExoticComponent & React.RefAttributes>; declare const CardTitle: CardTitleComponent; export type CardContentProps = React.HTMLAttributes; type CardContentComponent = React.ForwardRefExoticComponent & React.RefAttributes>; declare const CardContent: CardContentComponent; export type CardFooterProps = React.HTMLAttributes; type CardFooterComponent = React.ForwardRefExoticComponent & React.RefAttributes>; declare const CardFooter: CardFooterComponent; type CardComponent = typeof CardRoot & { Header: typeof CardHeader; Title: typeof CardTitle; Content: typeof CardContent; Footer: typeof CardFooter; }; export declare const Card: CardComponent; export default Card; //# sourceMappingURL=index.d.ts.map