import { CSSProperties } from "styled-components";
interface IFDataProps {
    title: string;
    handleModal?: () => void;
    children?: any;
    typeModal?: string;
    component?: any;
    style?: CSSProperties;
}
declare const ModalHeader: (props: IFDataProps) => import("react/jsx-runtime").JSX.Element;
export default ModalHeader;
