import * as React from 'react'; interface IModal { visible: boolean; transparent?: boolean; blur?: boolean; fullScreenMobile?: boolean; fullScreenDesktop?: boolean; onClose?: () => void; goBack?: () => void; children: React.ReactNode | Array; disableScroll?: boolean; contentStyle?: React.CSSProperties; } export declare const Modal: (props: IModal) => React.JSX.Element; export {};