import React from 'react';
import { CardProps } from './Card.types';
/**
 * Cards are components used to display information.
 */
declare const Card: React.FC<CardProps>;
export default Card;
