import { ExtractPropTypes, PropType, VNode } from 'vue'; export type CheckboxProps = ExtractPropTypes; export declare const CHECKBOX_PROPS: { value: { type: PropType; default: string; }; label: PropType>; defaultChecked: BooleanConstructor; name: StringConstructor; disabled: { type: BooleanConstructor; default: boolean; }; readonly: { type: BooleanConstructor; default: boolean; }; };