export interface CheckboxProps { /** * Whether the checkbox is currently checked based on the current value. * Either defined by a boolean, or whether `checked` as an array includes `value`. */ checked: boolean | Array; /** * Whether the checkbox is in an error state (optional). For error styling without error text. * * @deprecated Just pass `error-text` instead. */ hasError?: boolean; /** * Unique ID for the checkbox, required for accessibility purposes */ id?: string; /** * Label text to display with checkbox */ label?: string; /** * Error text to display. Replaces `hintText` (if provided) and adds error styling (overrides `hasError`). */ errorText?: string; /** * Displays text below the input; hidden when the isReadOnly prop is truthy. */ hintText?: string; /** * @deprecated use the `checked` prop instead */ modelValue?: boolean | Array; /** * The value of the checkbox. */ value?: string | number; /** * Whether the checkbox is disabled. */ disabled?: boolean; } declare var __VLS_1: {}, __VLS_3: {}; type __VLS_Slots = {} & { default?: (props: typeof __VLS_1) => any; } & { hint?: (props: typeof __VLS_3) => any; }; declare const __VLS_base: import("vue").DefineComponent any; }, string, import("vue").PublicProps, Readonly & Readonly<{ "onUpdate:checked"?: ((value: boolean | (string | number)[]) => any) | undefined; }>, { id: string; label: string; disabled: boolean; value: string | number; modelValue: boolean | Array; hasError: boolean; errorText: string; hintText: string; }, {}, {}, {}, 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; }; };