import { SVATraits } from 'jade-garden';
/**
 * **Color Field**
 * @description Allows users to enter and adjust a hex color value.
 * @see [source](https://kobalte.dev/docs/core/components/color-field#anatomy)
 */
export declare const slots: readonly ["description", "errorMessage", "input", "label"];
/**
 * **Color Field**
 * @description Allows users to enter and adjust a hex color value.
 * @see [source](https://kobalte.dev/docs/core/components/color-field#anatomy)
 */
export type Slots = (typeof slots)[number];
/**
 * **Color Field**
 * @description Allows users to enter and adjust a hex color value.
 * @see [source](https://kobalte.dev/docs/core/components/color-field#api-reference)
 */
export type Traits = SVATraits<Slots, {
    description: {};
    errorMessage: {};
    input: {};
    label: {};
}>;
