import { CardProps as BootstrapCardProps, CardImgProps } from 'react-bootstrap';
export interface CardHeder {
    color?: string;
    title: string;
    subtitle?: string;
}
export interface CardImage extends CardImgProps {
    src: string;
}
export interface CardBody {
    color?: string;
    text: string;
}
export interface CardProps extends BootstrapCardProps {
    loading?: boolean;
    header: CardHeder;
    image?: CardImage;
    content?: CardBody;
    link?: string;
    className?: string;
    backgroundColor?: string;
    children?: any;
    onClick?: () => Event;
}
