import { CheckboxProps, CheckboxValueType } from 'element-plus'; export interface XCheckboxProps { disabled?: boolean; falseValue?: CheckboxProps['falseValue']; label?: CheckboxProps['label']; size?: CheckboxProps['size']; trueValue?: CheckboxProps['trueValue']; } type __VLS_Props = XCheckboxProps; type __VLS_ModelProps = { modelValue?: CheckboxValueType; }; type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps; declare const __VLS_export: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "update:modelValue": (value: CheckboxValueType | undefined) => any; focus: (e: FocusEvent) => any; blur: (e: FocusEvent) => any; }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ "onUpdate:modelValue"?: ((value: CheckboxValueType | undefined) => any) | undefined; onFocus?: ((e: FocusEvent) => any) | undefined; onBlur?: ((e: FocusEvent) => any) | undefined; }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; export default _default;