import type { InjectionKey, Ref } from 'vue'; export interface ISelectorContext { modelValue: Ref; emitChange(value: string | number): void; } export declare const SELECTOR_INJECT_KEY: InjectionKey;