export declare const Checkbox: import("vue").DefineComponent<{ modelValue: { type: BooleanConstructor; default: boolean; }; indeterminate: { type: BooleanConstructor; default: boolean; }; }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly> & { onChange?: ((...args: any[]) => any) | undefined; "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined; }, { indeterminate: boolean; modelValue: boolean; }, {}>; export type { CheckboxProps } from './Checkbox'; declare module 'vue' { interface GlobalComponents { ErCheckbox: typeof Checkbox; } }