import { type ReactElement } from "react";
export type ModalProps = {
    open?: boolean;
    stickToTop?: boolean;
    className?: string;
    onClose?: () => void;
    allowBackdropClose?: boolean;
    children: ReactElement<{
        onClick: () => void;
    }>;
};
export declare function Modal({ open, children, onClose, allowBackdropClose, className, stickToTop, }: ModalProps): import("react/jsx-runtime").JSX.Element;
