/// <reference types="react" />
import { IModalPayload } from "../../constants/common-interface";
declare const MuiModal: (props: IProps) => JSX.Element;
interface IProps {
    payload: IModalPayload | undefined;
    open: boolean;
    onClose: Function;
    handleChange: Function;
}
export default MuiModal;
