import { XAXisOption } from 'echarts/types/dist/shared'; import { TitleComponentOption, ToolboxComponentOption, GridComponentOption, DataZoomComponentOption, LegendComponentOption, XAXisComponentOption, YAXisComponentOption } from 'echarts'; export declare function titleConfig(chartConfig: { title: string; }): TitleComponentOption; export declare const toolboxConfig: ToolboxComponentOption; export declare const gridConfig: GridComponentOption; export declare const dataZoomConfig: DataZoomComponentOption; export declare const legendConfig: LegendComponentOption; export declare function xAxisConfig(type: 'time' | 'category', params?: Partial<{ axisLabel: XAXisComponentOption['axisLabel']; data: string[]; axisTick: XAXisComponentOption['axisTick']; }>): XAXisOption; export declare function yAxisConfig(type?: 'value', params?: Partial<{ axisLabel: YAXisComponentOption['axisLabel']; data: string[]; }>): YAXisComponentOption;