import { PropsWithChildren } from 'react'; import { DialogOptions } from "./use-dialog"; export type DialogProps = PropsWithChildren; export declare const Dialog: ({ children, ...options }: DialogProps) => JSX.Element;