import { SVATraits } from 'jade-garden';
/**
 * **Checkbox**
 * @description A control that allows the user to toggle between checked and not checked.
 * @see [source](https://reka-ui.com/docs/components/checkbox#anatomy)
 */
export declare const slots: readonly ["groupRoot", "root", "indicator"];
/**
 * **Checkbox**
 * @description A control that allows the user to toggle between checked and not checked.
 * @see [source](https://reka-ui.com/docs/components/checkbox#anatomy)
 */
export type Slots = (typeof slots)[number];
/**
 * **Checkbox**
 * @description A control that allows the user to toggle between checked and not checked.
 * @see [source](https://reka-ui.com/docs/components/checkbox#api-reference)
 */
export type Traits = SVATraits<Slots, {
    root: {
        state: "checked" | "unchecked" | "indeterminate";
        disabled: "";
    };
    indicator: {
        state: "checked" | "unchecked" | "indeterminate";
        disabled: "";
    };
}>;
