import { FC } from "react"; declare type TModalType = "slider" | "form"; export interface ModalProps { type: TModalType; onClose: (event: any) => void | undefined; children: any; } export declare const ModalWrapper: ({ children, onClick }: any) => JSX.Element; export declare const BackDrop: ({ onClose }: any) => JSX.Element; export declare const ModalWidget: FC; export {};