export declare const formatPercentage: (ratio: number) => string; export declare const countDecimalPlaces: (value: number) => number; export declare const approxEqual: (a: number, b: number) => boolean; export declare const clamp: (value: number, min: number, max: number) => number; export declare const arraysEqual: (oldValues: number[], newValues: number[]) => boolean; export declare function argMin(values: T[], argFn: (value: T) => any): T | undefined; export declare function fillValues(values: T[], startIndex: number, endIndex: number, fillValue: T): void; export declare function isElementOfType(element: React.ReactElement): boolean;