import { SelectContext } from '../types'; import { Ref } from 'vue'; export declare const ECHARTS_SELECT_KEY: unique symbol; interface UseSelectOption { options: Ref; update: (data: T) => void; } export declare const useSelect: (config?: UseSelectOption) => SelectContext; export {};