export interface ModalLightProps extends Omit, "title"> { /** Modal title */ title?: React.ReactNode; /** Determines whether the close button should be rendered * @default true */ withCloseButton?: boolean; /** 是否点击外部关闭 * @default true */ outsideClickClose?: boolean; /** Determines whether the modal should be full screen * @default false */ fullScreen?: boolean; /** 显示位置 * @default "middle" */ position?: "top" | "middle" | "bottom" | "start" | "end"; /** Modal content */ children?: React.ReactNode; } /** 使用HTML原生dialog实现Modal框 */ export declare function ModalLight(props: ModalLightProps): import("react").JSX.Element;