export declare function reverseAll(labels: string[], seriesLabels: string[], colors: string[], hasSeries: boolean, texts: any[][], datasets: any[][]): { labels: string[]; seriesLabels: string[]; colors: string[]; texts: any[][]; datasets: any[][]; }; export declare function removeUndefinedProperties(obj: any): void; export declare function isAllZeros(arr: Array): boolean; export declare function formatLargeNumber(value: number): string; export declare function getFormattedValueTicks(maxValue: number): { tickvals: number[]; ticktext: string[]; } | undefined;