import { ElementType, FC, HTMLAttributes } from 'react'; declare const ModalTitle: FC; interface ModalTitleProps extends HTMLAttributes { /** * as - specifies the html element the component should be rendered as */ as?: ElementType; } export { ModalTitle };