import { type ReactNode } from "react"; export interface ModalProps { isOpen: boolean; title: string; children: ReactNode; onClose?: () => void; closeHint?: string; scopeId?: string; zIndex?: number; } export declare function Modal({ isOpen, title, children, onClose, closeHint, scopeId, zIndex }: ModalProps): ReactNode; //# sourceMappingURL=modal.d.ts.map