import { FunctionComponent, HTMLProps, ReactType } from 'react'; export interface CardProps extends HTMLProps { component?: ReactType; } declare const Card: FunctionComponent; export default Card;