import React from "react";
import "./Index.scss";
interface Props {
    zIndex?: number;
    heading?: string;
    modalSize?: "full" | "xl" | "lg" | "common";
    maxWidth?: string;
    modalContentClassName?: string;
    modalHeaderClassName?: string;
    modalBodyClassName?: string;
    modalFooterClassName?: string;
    children?: React.ReactNode;
    header?: React.ReactNode;
    footer?: React.ReactNode;
    onOpen?: Function;
    onSubmit?: Function;
    modalBodyHeight?: string;
    operationName?: string;
    onClose?: Function;
    triggerContent?: React.ReactNode;
    triggerClassName?: string;
    isDraggable?: boolean;
}
declare const Mask: React.ForwardRefExoticComponent<Props & React.RefAttributes<any>>;
export default Mask;
