import { ChartType } from '../types';
import type { DataTable, Cell } from '../types';
export declare const getChartTypeFromSpec: (spec: any, vchartType?: string) => ChartType;
export declare const getDatasetFromSpec: (spec: any) => any[];
export declare const getFieldMappingFromSpec: (spec: any) => {};
export declare const getCellFromSpec: (spec: any, vmindChartType?: ChartType) => Cell;
export declare const revisedCell: (cell: Cell, dataset: DataTable) => Cell;
export declare const fillSpecTemplateWithData: (template: any, dataset: DataTable, propsCell?: any, totalTime?: number) => any;
