import { type PropsWithChildren } from 'react';
export type ModalProps = PropsWithChildren<{
    open?: boolean;
    onClose: () => void;
    className?: string;
}>;
export declare function Modal({ children, ...props }: ModalProps): import("react/jsx-runtime").JSX.Element | null;
export declare function ModalPortal(): import("react/jsx-runtime").JSX.Element;
