import { SVATraits } from 'jade-garden'; /** * **Dialog** * @description A modal window presenting content or seeking user input without navigating away from the current context. * @see [source](https://www.bits-ui.com/docs/components/dialog#api-reference) */ export declare const slots: readonly ["root", "title", "close", "content", "overlay", "trigger", "description"]; /** * **Dialog** * @description A modal window presenting content or seeking user input without navigating away from the current context. * @see [source](https://www.bits-ui.com/docs/components/dialog#api-reference) */ export type Slots = (typeof slots)[number]; /** * **Dialog** * @description A modal window presenting content or seeking user input without navigating away from the current context. * @see [source](https://www.bits-ui.com/docs/components/dialog#api-reference) */ export type Traits = SVATraits;