import * as React from "react"; export interface CardProps extends React.HTMLAttributes { /** * Enable sticky header with frosted glass effect * When true, CardHeader becomes sticky and CardContent becomes scrollable with fade mask * @default false */ stickyHeader?: boolean; } declare const Card: React.ForwardRefExoticComponent>; declare const CardHeader: React.ForwardRefExoticComponent & React.RefAttributes>; declare const CardTitle: React.ForwardRefExoticComponent & React.RefAttributes>; declare const CardDescription: React.ForwardRefExoticComponent & React.RefAttributes>; declare const CardContent: React.ForwardRefExoticComponent & React.RefAttributes>; declare const CardFooter: React.ForwardRefExoticComponent & React.RefAttributes>; export { Card, CardHeader, CardFooter, CardTitle, CardDescription, CardContent }; //# sourceMappingURL=card.d.ts.map