import { SVATraits } from 'jade-garden';
/**
 * **Separator**
 * @description Visually or semantically separates content.
 * @see [source](https://reka-ui.com/docs/components/separator#anatomy)
 */
export declare const slots: readonly ["root"];
/**
 * **Separator**
 * @description Visually or semantically separates content.
 * @see [source](https://reka-ui.com/docs/components/separator#anatomy)
 */
export type Slots = (typeof slots)[number];
/**
 * **Separator**
 * @description Visually or semantically separates content.
 * @see [source](https://reka-ui.com/docs/components/separator#api-reference)
 */
export type Traits = SVATraits<Slots, {
    root: {
        orientation: "vertical" | "horizontal";
    };
}>;
