import { default as React, HTMLAttributes } from 'react'; import { IconButtonProps } from '../IconButton'; export interface ModalHeaderProps extends HTMLAttributes { /** * Title for header modal. */ title: string; /** * Description for header modal. */ description?: string; /** * Props for the Close Button component. */ closeBtnProps?: Partial>; /** * Function called when dismiss button is clicked. */ onClose?: () => void; } declare const ModalHeader: ({ onClose, title, closeBtnProps, description, }: ModalHeaderProps) => React.JSX.Element; export default ModalHeader; //# sourceMappingURL=ModalHeader.d.ts.map