import { SVATraits } from 'jade-garden';
/**
 * **Dialog**
 * @description A window overlaid on either the primary window or another dialog window, rendering the content underneath inert.
 * @see [source](https://reka-ui.com/docs/components/dialog#anatomy)
 */
export declare const slots: readonly ["root", "trigger", "portal", "content", "overlay", "close", "title", "description"];
/**
 * **Dialog**
 * @description A window overlaid on either the primary window or another dialog window, rendering the content underneath inert.
 * @see [source](https://reka-ui.com/docs/components/dialog#anatomy)
 */
export type Slots = (typeof slots)[number];
/**
 * **Dialog**
 * @description A window overlaid on either the primary window or another dialog window, rendering the content underneath inert.
 * @see [source](https://reka-ui.com/docs/components/dialog#api-reference)
 */
export type Traits = SVATraits<Slots, {
    trigger: {
        state: "open" | "closed";
    };
    content: {
        state: "open" | "closed";
    };
    overlay: {
        state: "open" | "closed";
    };
}>;
