import { CheckboxProps, CheckboxChangeEventDetail } from '../core/Checkbox'; export interface VueCheckboxProps extends Omit { } declare function __VLS_template(): { default?(_: {}): any; }; declare const __VLS_component: import('vue').DefineComponent, { name: string; value: string; checked: boolean; indeterminate: boolean; disabled: boolean; size: string; theme: string; labelText: string; labelPosition: string; required: boolean; invalid: boolean; errorMessage: string; helpText: string; }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { click: (event: MouseEvent) => void; change: (detail: CheckboxChangeEventDetail) => void; "update:checked": (checked: boolean) => void; "update:indeterminate": (indeterminate: boolean) => void; }, string, import('vue').PublicProps, Readonly, { name: string; value: string; checked: boolean; indeterminate: boolean; disabled: boolean; size: string; theme: string; labelText: string; labelPosition: string; required: boolean; invalid: boolean; errorMessage: string; helpText: string; }>>> & Readonly<{ onChange?: ((detail: CheckboxChangeEventDetail) => any) | undefined; onClick?: ((event: MouseEvent) => any) | undefined; "onUpdate:checked"?: ((checked: boolean) => any) | undefined; "onUpdate:indeterminate"?: ((indeterminate: boolean) => any) | undefined; }>, { invalid: boolean; disabled: boolean; name: string; labelPosition: "end" | "start"; checked: boolean; size: import('../core/_Checkbox').CheckboxSize; required: boolean; errorMessage: string; helpText: string; value: string; theme: import('../core/_Checkbox').CheckboxTheme; labelText: string; indeterminate: boolean; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; declare const _default: __VLS_WithTemplateSlots>; 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; }; }; //# sourceMappingURL=VueCheckbox.vue.d.ts.map