import { ReactNode } from 'react'; interface ModalProps { isOpen: boolean; children?: ReactNode; className?: string; customRootId?: string; zIndex?: string; } export declare function Modal({ isOpen, children, customRootId, className, zIndex }: ModalProps): import("react/jsx-runtime").JSX.Element | null; export {};