import React from "react"; import { Color, ValueFormatter } from "./inputTypes"; export declare const mapInputsToDeltaType: (deltaType: string, isIncreasePositive: boolean) => string; export declare const defaultValueFormatter: ValueFormatter; export declare const sumNumericArray: (arr: number[]) => number; export declare const removeValueFromArray: (value: any, array: any[]) => any[]; export declare const isValueInArray: (value: any, array: any[]) => boolean; export declare const stringIsNumeric: (str: string | undefined) => boolean; export declare const stringEndsWithNumber: (str: string) => boolean; export interface SelectItemProps { value: string; text?: string; } export declare function constructValueToNameMapping(children: React.ReactElement[] | React.ReactElement): Map; export declare function getFilteredOptions(searchQuery: string, options: SelectItemProps[]): SelectItemProps[]; export declare function mergeRefs(refs: Array | React.LegacyRef>): React.RefCallback; export declare function makeClassName(componentName: string): (className: string) => string; export declare function getColorClassNames(color: Color | "white" | "black" | "transparent", shade?: number): import("./colorClassNames").ColorTypes;