/** Modal — a dialog centered over the screen, for a decision that has to be * answered before anything else. */ import { type DialogEngineProps, type DialogProps } from "./dialog.js"; /** Plus any Base UI `` prop, handed straight to the popup. */ export type ModalProps = DialogProps & DialogEngineProps; export declare function Modal({ size, ...rest }: ModalProps): import("react").JSX.Element;