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