import { type HTMLAttributes, type ReactNode } from 'react';
declare const Card: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;
declare const CardHeader: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;
declare const CardTitle: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;
declare const CardDescription: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;
declare const CardContent: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;
declare const CardFooter: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;
interface CardHorizontalProps {
icon: ReactNode;
title: string;
description: string;
className?: string;
borderLeft?: boolean;
}
export declare function CardHorizontal({ icon, title, description, className, borderLeft }: CardHorizontalProps): import("react").JSX.Element;
export { Card, CardHeader, CardFooter, CardTitle, CardDescription, CardContent };
//# sourceMappingURL=card.d.ts.map