import React, { ElementType } from 'react'; import { IComponentBaseProps } from '../types'; export type CardTitleProps = React.HTMLAttributes & IComponentBaseProps & { tag?: ElementType; }; declare const CardTitle: React.ForwardRefExoticComponent & IComponentBaseProps & { tag?: React.ElementType | undefined; } & React.RefAttributes>; export default CardTitle;