import { FC, HTMLAttributes } from 'react'; import { BaseProps } from '../Base'; export interface ModalHeaderProps extends Omit, 'css'>, BaseProps { /** The title of the header in the modal. */ title: string; /** Whether or not the close icon is shown on the modal. */ displayClose?: boolean; } export declare const ModalHeader: FC; export default ModalHeader;