import { ExtractPropTypes, PropType } from 'vue'; export declare const checkboxProps: { readonly modelValue: PropType; readonly indeterminte: BooleanConstructor; readonly disabled: BooleanConstructor; readonly label: { readonly type: PropType; }; }; export type CheckboxProps = Partial>; export declare const checkboxEmits: { 'update:modelValue': (value: boolean | string | number) => value is boolean; change: (value: boolean) => boolean; }; export type CheckboxEmits = typeof checkboxEmits;