import type { PropType } from 'vue'; declare const _default: import("vue").DefineComponent<{ /** * The color variant of the checkbox group * @type light | dark * @default * @name color */ color: { type: StringConstructor; default: undefined; }; /** * The disabled state of the checkbox group * @type Boolean * @default false * @name disabled */ disabled: { type: BooleanConstructor; default: boolean; }; /** * The error state of the checkbox, computed based on schema by default. * @type Boolean | Array * @default ['touched', 'dirty', 'invalid'] * @TODO use propDefaultValue to set default value * @name error */ error: { type: PropType; default: () => string[]; }; /** * Display the checkbox group as inline * @type Boolean * @default false * @name inline */ inline: { type: BooleanConstructor; default: boolean; }; /** * The indeterminate state of the checkbox group * @type Boolean * @default false * @name indeterminate */ indeterminate: { type: BooleanConstructor; default: boolean; }; /** * Used to set the checkbox group value * @default [] * @name modelValue */ modelValue: { type: ArrayConstructor; default: () => never[]; }; /** * The unique identifier of the checkbox group * @type String * @default uid() * @name name */ name: { type: StringConstructor; default: () => string; }; /** * Displays the native browser checkbox input indicator * @type Boolean * @default false * @name native */ native: { type: BooleanConstructor; default: boolean; }; /** * The readonly state of the checkbox group * @type Boolean * @default false * @name readonly */ readonly: { type: BooleanConstructor; default: boolean; }; /** * The size variant of the checkbox group * @type sm | md | lg * @default * @name size */ size: { type: StringConstructor; default: undefined; }; /** * Enable checkbox group validation using schema * @type Boolean * @default true * @name validateSchema */ validate: { type: BooleanConstructor; default: boolean; }; /** * The options of the checkbox group * @type Array * @default [] * @name options */ options: { type: PropType; default: () => never[]; }; /** * The fallback label of the checkbox group. Can be a string, number, render function, or component * @type String | Number | Boolean | Function | Object * @default undefined * @name label */ label: { type: PropType; default: undefined; }; }, { classes: import("vue").ComputedRef<{ [x: string]: any; '-disabled': boolean; '-readonly': boolean; '-inline': boolean; '-error': any; }>; }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; default: () => string[]; }; /** * Display the checkbox group as inline * @type Boolean * @default false * @name inline */ inline: { type: BooleanConstructor; default: boolean; }; /** * The indeterminate state of the checkbox group * @type Boolean * @default false * @name indeterminate */ indeterminate: { type: BooleanConstructor; default: boolean; }; /** * Used to set the checkbox group value * @default [] * @name modelValue */ modelValue: { type: ArrayConstructor; default: () => never[]; }; /** * The unique identifier of the checkbox group * @type String * @default uid() * @name name */ name: { type: StringConstructor; default: () => string; }; /** * Displays the native browser checkbox input indicator * @type Boolean * @default false * @name native */ native: { type: BooleanConstructor; default: boolean; }; /** * The readonly state of the checkbox group * @type Boolean * @default false * @name readonly */ readonly: { type: BooleanConstructor; default: boolean; }; /** * The size variant of the checkbox group * @type sm | md | lg * @default * @name size */ size: { type: StringConstructor; default: undefined; }; /** * Enable checkbox group validation using schema * @type Boolean * @default true * @name validateSchema */ validate: { type: BooleanConstructor; default: boolean; }; /** * The options of the checkbox group * @type Array * @default [] * @name options */ options: { type: PropType; default: () => never[]; }; /** * The fallback label of the checkbox group. Can be a string, number, render function, or component * @type String | Number | Boolean | Function | Object * @default undefined * @name label */ label: { type: PropType; default: undefined; }; }>> & { "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined; }, { color: string; size: string; options: CheckboxGroupOption[]; name: string; label: CheckboxGroupOption; error: boolean | string[]; disabled: boolean; readonly: boolean; modelValue: unknown[]; indeterminate: boolean; native: boolean; validate: boolean; inline: boolean; }, {}>; export default _default;