export interface SwitchProps { /** * The current checked value, can be a boolean or an array of values */ checked?: boolean | Array; /** * Prevent the user from changing the switch state. */ disabled?: boolean; /** * Displays text below the input; hidden when the isReadOnly prop is truthy. */ hintText?: string; /** * Unique ID for the switch, required for accessibility purposes */ id?: string; /** * Label text to display with switch */ label?: string; /** * HTML name property */ name?: string; /** * Value associated with switch when it is `checked`. This value is * used to compare against `checked` property when passed as an array. */ value?: string | number; } declare var __VLS_1: {}; type __VLS_Slots = {} & { hint?: (props: typeof __VLS_1) => any; }; declare const __VLS_base: import("vue").DefineComponent any; }, string, import("vue").PublicProps, Readonly & Readonly<{ "onUpdate:checked"?: ((value: boolean | (string | number)[] | undefined) => any) | undefined; }>, { id: string; name: string; label: string; disabled: boolean; value: string | number; checked: boolean | Array; 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; }; };