export interface FmCheckboxProps { /** * If defined as array, value will be pushed to array if checkbox is ticked. * You can use it as a boolean value as well * */ modelValue: boolean | Array; label?: string; sublabel?: string; disabled?: boolean; /** `modelValue` takes highest precedence, indeterminate only works if `modelValue` is false */ indeterminate?: boolean; /** The value that will be pushed to `modelValue` if it is an array */ value: any; } declare const _default: __VLS_WithTemplateSlots, { label: string; sublabel: string; disabled: undefined; indeterminate: boolean; }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:modelValue": (value: any) => void; "update:indeterminate": (value: boolean) => void; }, string, import("vue").PublicProps, Readonly, { label: string; sublabel: string; disabled: undefined; indeterminate: boolean; }>>> & { "onUpdate:modelValue"?: ((value: any) => any) | undefined; "onUpdate:indeterminate"?: ((value: boolean) => any) | undefined; }, { label: string; disabled: boolean; indeterminate: boolean; sublabel: string; }, {}>, { label?(_: {}): any; }>; export default _default; type __VLS_NonUndefinedable = T extends undefined ? never : T; type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: import('vue').PropType<__VLS_NonUndefinedable>; } : { type: import('vue').PropType; required: true; }; }; type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_Prettify : P[K]; }; type __VLS_Prettify = { [K in keyof T]: T[K]; } & {}; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };