import { Ref } from 'vue'; import { TextType, TextContext, UpdateOption } from '../types'; export declare const ECHARTS_TEXT_KEY: unique symbol; interface UseTextOptions { options: Ref; update: (data: O) => void; } export declare function useText(config?: Partial>): TextContext; export {};