import { PropType } from 'vue'; import { NormalObject } from '@vunk/core/shared'; export declare const props: { source: { type: PropType; default: () => any[]; }; activeMode: { type: PropType<"some" | "all">; default: string; }; modelValue: { type: BooleanConstructor; required: boolean; }; injectKey: { type: StringConstructor; required: boolean; }; eventType: { type: StringConstructor; default: string; }; clearable: { type: BooleanConstructor; default: boolean; }; custom: { type: BooleanConstructor; default: boolean; }; initValue: { type: BooleanConstructor; default: boolean; }; }; export declare const emits: { 'update:modelValue': any; active: any; inactive: any; };