import React from 'react';
import { CardProps } from './Card.types';
/**
 * A card component with header, footer and content
 */
declare const Card: React.FunctionComponent<CardProps>;
export default Card;
