import { FunctionComponent } from "react"; /** * NblocksModalComponent, shared reusable modal * Swipable support is experimental. Works 50% of the time * onCloseModal optional but required when half mode * @param param0 * @returns */ declare const NblocksModalComponent: FunctionComponent<{ visible: boolean; onCloseModal: () => void; mode: 'full' | 'half'; swipable: boolean; }>; export { NblocksModalComponent };