import { ModalWindowlProps } from './modal-window';
export type ModalProps = ModalWindowlProps & {
    hasBackdrop?: boolean;
    scrollModal?: boolean;
};
export declare const Modal: ({ hasBackdrop, scrollModal, open, onClose, ...props }: ModalProps) => import("react/jsx-runtime").JSX.Element;
export * from './modal-window';
