import { StyleContext } from '../types'; import { Ref } from 'vue'; export declare const ECHARTS_STYLE_KEY: unique symbol; interface StyleOption { options: Ref; update: (data: T) => void; } export declare const useStyle: (config?: StyleOption) => StyleContext; export {};