import { IAxis, IChartOptions } from "../../../interfaces/Config";
import { IHighchartsAxisExtend } from "../../../interfaces/HighchartsExtend";
export declare function parseValue(value: string): number;
export declare const immutableSet: (dataSet: any, path: any, newValue: any) => any;
export declare const repeatItemsNTimes: (array: any[], n: number) => any;
export declare function subscribeEvent(event: any, debounce: any, func: any, target?: any): any;
export declare function subscribeEvents(func: any, events: any[], target?: any): any[];
export declare const unEscapeAngleBrackets: (str: string) => string;
export declare function getAttributeElementIdFromAttributeElementUri(attributeElementUri: string): string;
export declare function isRotationInRange(rotation: number, min: number, max: number): boolean;
export declare const isTable: any;
export declare const isColumnChart: any;
export declare const isBarChart: any;
export declare const isBulletChart: any;
export declare const isLineChart: any;
export declare const isScatterPlot: any;
export declare const isPieChart: any;
export declare const isDonutChart: any;
export declare const isPieOrDonutChart: (type: string) => any;
export declare const isAreaChart: any;
export declare const isBubbleChart: any;
export declare const isHeadline: any;
export declare const isComboChart: (type: string) => any;
export declare const isTreemap: any;
export declare const isFunnelChart: any;
export declare const isHeatmap: any;
export declare const isPushpin: any;
export declare const isInvertedChartType: (type: string) => any;
export declare const isChartSupported: (type: string) => boolean;
export declare const isOneOfTypes: (type: string, types: string[]) => boolean;
export declare const isPrimaryYAxis: (yAxis: IAxis | IHighchartsAxisExtend) => boolean;
export declare const stringifyChartTypes: () => string;
export declare function formatLegendLabel(value: number, format: string, diff: number, numericSymbols: string[]): string;
export declare const getPrimaryChartType: (chartOptions: IChartOptions) => string;
