type CheckboxProps = { /** * The label of the checkbox */ label: string; /** * To disable the checkbox. But, it will still be visible by the screen readers */ disabled?: boolean; /** * To hide the label as a text, but still binding the label to the checkbox */ hideLabel?: boolean; /** * The checkbox ID */ id?: string; /** * The test id to be used in e2e tests */ dataTestid?: string; /** * To define the checkbox as indeterminate */ indeterminate?: boolean; /** * Controls the checked state of the checkbox */ modelValue?: boolean; /** * Name of the checkbox */ name?: string; /** * The value of the checkbox */ nativeValue?: string | number | boolean; /** * To define the checkbox as required. Useful for form validation */ required?: boolean; /** * Extends the checkbox with a description */ description?: string; labelClass?: string; }; declare var __VLS_1: { for: string; class: string | undefined; }; type __VLS_Slots = {} & { label?: (props: typeof __VLS_1) => any; }; declare const __VLS_base: import("vue").DefineComponent any; "update:modelValue": (value: boolean) => any; }, string, import("vue").PublicProps, Readonly & Readonly<{ onBlur?: ((event: FocusEvent) => any) | undefined; "onUpdate:modelValue"?: ((value: boolean) => any) | undefined; }>, { disabled: boolean; dataTestid: string; hideLabel: boolean; indeterminate: boolean; modelValue: boolean; nativeValue: string | number | boolean; required: boolean; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };