import { DialogCompound } from './types'; /** * A modal dialog built on Base UI Dialog. * * Compose with the named sub-components for a complete, accessible modal: * `Dialog.Trigger`, `Dialog.Content`, `Dialog.Header`, `Dialog.Body`, * `Dialog.Footer`, `Dialog.Title`, `Dialog.Description` and `Dialog.Close`. * * @example * ```tsx * * * * ``` */ declare const Dialog: DialogCompound; export { Dialog };