import { ExtractPropTypes } from 'vue'; import type CheckTag from './CheckTag.vue'; export declare const checkTagEmits: { "update:checked": (value: boolean) => boolean; change: (value: boolean) => boolean; }; export declare const checkTagProps: { checked: { type: BooleanConstructor; default: boolean; }; }; export declare type CheckTagProps = ExtractPropTypes; export declare type CheckTagEmits = typeof checkTagEmits; export declare type CheckTagInstance = InstanceType;