import { FC } from "react"; export declare const ModalWrapper: ({ children }: any) => JSX.Element; declare const Modal: FC<{ show: boolean; children: any; }>; export default Modal;