import type { ExtractPropTypes, Ref } from 'vue'; import type { InputGroupState } from '../../types/group'; export declare const VvCheckboxProps: { /** * If true, the input will be indeterminated */ indeterminate: BooleanConstructor; /** * Value associated with the unchecked state */ uncheckedValue: (NumberConstructor | BooleanConstructor | StringConstructor)[]; /** * If true, the input will be displayed as a switch */ switch: BooleanConstructor; modifiers: { type: PropType; default: undefined; }; value: { type: (NumberConstructor | BooleanConstructor | StringConstructor)[]; default: undefined; }; modelValue: { type: (NumberConstructor | ObjectConstructor | BooleanConstructor | StringConstructor)[]; default: undefined; }; loading: { type: BooleanConstructor; default: boolean; }; loadingLabel: { type: StringConstructor; default: string; }; label: { type: (NumberConstructor | StringConstructor)[]; default: undefined; }; readonly: { type: BooleanConstructor; default: boolean; }; disabled: { type: BooleanConstructor; default: boolean; }; hintLabel: { type: StringConstructor; default: string; }; invalid: { type: BooleanConstructor; default: boolean; }; invalidLabel: { type: (ArrayConstructor | StringConstructor)[]; default: undefined; }; valid: { type: BooleanConstructor; default: boolean; }; validLabel: { type: (ArrayConstructor | StringConstructor)[]; default: undefined; }; tabindex: { type: (NumberConstructor | StringConstructor)[]; default: number; }; name: { type: StringConstructor; required: boolean; }; id: (NumberConstructor | StringConstructor)[]; }; export declare const VvCheckboxEvents: string[]; export type VvCheckboxPropsTypes = ExtractPropTypes; /** * Merges local and group props */ export declare function useGroupProps(props: VvCheckboxPropsTypes, emit: (event: (typeof VvCheckboxEvents)[number], value: unknown) => void): { id: Ref | undefined; propsSwitch: Ref; indeterminate: Ref; group: InputGroupState | undefined; isInGroup: globalThis.ComputedRef; modelValue: Ref; valid: Ref; invalid: Ref; readonly: globalThis.ComputedRef; disabled: globalThis.ComputedRef; };