import { SetOptionOpts } from 'echarts/core'; import { ECBasicOption } from 'echarts/types/dist/shared'; type Params = { option?: Opt; settings?: SetOptionOpts; loading?: boolean; theme?: 'light' | 'dark'; }; export declare const useEChart: (params: Params) => { ref: (node: HTMLDivElement | null) => void; }; export {};