import type { ExtractPropTypes } from 'vue'; export declare const checkboxProps: { indeterminate: BooleanConstructor; checked: BooleanConstructor; disabled: BooleanConstructor; label: { type: (BooleanConstructor | StringConstructor | NumberConstructor)[]; default: string; }; modelValue: (BooleanConstructor | StringConstructor | NumberConstructor)[]; name: { type: StringConstructor; }; validateEvent: { type: BooleanConstructor; default: boolean; }; }; export type CheckboxProps = ExtractPropTypes;