import { PropType } from 'vue'; export declare const props: { modelValue: { type: PropType; default: () => any[]; }; }; export declare const emits: { 'update:modelValue': (v: string[]) => boolean; };