import { ExtractPropTypes } from 'vue'; export declare const checkboxProps: { modelValue: { type: BooleanConstructor; required: boolean; }; label: { type: StringConstructor; }; indeterminate: { type: BooleanConstructor; }; theme: { type: import('vue').PropType; }; themeOverrides: import('vue').PropType>; }; export type CheckboxProps = ExtractPropTypes; export declare const checkboxEmits: { 'update:modelValue': (value: boolean) => void; }; export type CheckboxEmits = typeof checkboxEmits;