interface CardProps {
    onClick: (event: any) => void;
    imgSrc?: string;
    imgAlt?: string;
    header: string;
    text: string;
}
declare const Card: (props: CardProps) => JSX.Element;
export { Card };
