import Result from '../../models/Result'; export interface Point { pointcoord: number[]; pointCoordZ: number; pointValue: number; } export interface AddBarChartParams { modelFiles: { modelId: string; type: string; coordType: number; coordTypeZ: number; }; barChartFiles: { barStyle: string; barColor: string; barWidth: number; barOpa: number; heightMax: number; valueMax: number; valueMin: number; point: Point[]; }; } export interface UpdateBarChartStyleParams { modelFiles: { modelId: string; }; barChartFiles: { barStyle: string; barColor: string; barWidth: number; barOpa: number; heightMax: number; valueMax: number; valueMin: number; }; } export interface UpdateBarChartCoordParams { modelFiles: { modelId: string; coordType: number; coordTypeZ: number; }; barChartFiles: { point: Point[]; }; } declare class BarChart { private static get className(); static addBarChart: (params: AddBarChartParams[]) => Promise>; static updateBarChartStyle: (params: UpdateBarChartStyleParams[]) => Promise>; static updateBarChartCoord: (params: UpdateBarChartCoordParams[]) => Promise>; } export default BarChart;