import { ReactNode } from 'react'; export interface DialogProps { isOpen: boolean; title?: string; children?: ReactNode; customRootId?: string; containerXMargin?: string; containerYMargin?: string; zIndex?: string; onClose?: () => void; goBack?: () => void; } export declare function Dialog({ isOpen, title, children, customRootId, containerXMargin, containerYMargin, zIndex, onClose, goBack, }: DialogProps): import("react/jsx-runtime").JSX.Element;