import React from 'react';
import { CardProps } from './interfaces';
export declare const Card: React.FC<CardProps> & {
    CardHeader: React.FC<import("./components").CardHeaderProps>;
    CardContent: React.FC<{
        children: React.ReactNode | React.ReactElement<any, string | React.JSXElementConstructor<any>>;
    }>;
    CardFooter: React.FC<import("./components").CardFooterProps>;
};
