export interface Convert { createOptions: Function; transform: Function; } export declare const unifyChartProps: { data: any; options: any; width: any; height: any; target: any; convert: () => Convert; datasource: any; toolbox: () => Array; chartHooks: any; stateful: any; }; interface Options { loader: Function; condition: Object; } export declare const compProps: { target: any; options: () => Options; }; export type useLoaderProps = { target: Object; options: Options; }; export declare enum EToolbox { Download = 0, Statistic = 1, Table = 2 } export type EToolboxKeys = keyof typeof EToolbox; export type IToolbox = EToolbox[EToolboxKeys]; export declare const toolboxProps: { instance: any; iconSize: any; toggleTable: any; toggleStatistic: any; toolbox: () => Array; }; export {};