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