import * as React from "react"; type CardProps = (React.HTMLAttributes & { href?: never; }) | (React.AnchorHTMLAttributes & { href: string; }); declare const Card: React.ForwardRefExoticComponent>; type CardContentProps = React.HTMLAttributes; declare const CardContent: React.ForwardRefExoticComponent>; type CardFooterProps = React.HTMLAttributes; declare const CardFooter: React.ForwardRefExoticComponent>; type CardDescriptionProps = React.HTMLAttributes; declare const CardDescription: React.ForwardRefExoticComponent>; declare const CardTitle: React.ForwardRefExoticComponent & { size?: "default" | "lg"; } & React.RefAttributes>; type CardDetailProps = React.HTMLAttributes; declare const CardDetail: React.ForwardRefExoticComponent>; export { Card, CardFooter, CardContent, CardDescription, CardTitle, CardDetail, }; //# sourceMappingURL=card.d.ts.map