import * as React from "react"; declare const Card: React.ForwardRefExoticComponent & React.RefAttributes>; 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>; interface CardHorizontalProps { icon: React.ReactNode; title: string; description: string; className?: string; borderLeft?: boolean; } export declare function CardHorizontal({ icon, title, description, className, borderLeft }: CardHorizontalProps): React.JSX.Element; export { Card, CardHeader, CardFooter, CardTitle, CardDescription, CardContent }; //# sourceMappingURL=card.d.ts.map