export * from './color'; /** * Pick a random item from the `list` based on `str`. * * @param str - The string for which an item from the list is to be picked. * @param list - The list of items. * @returns An item from list. */ export declare function getRandomItemFromList(str: string, list: string[]): string; /** * Formats a number with an abbreviation based on its value. * * @param num - The number to be formatted. * @returns A number abbreviated with k. * * {@link https://stackoverflow.com/questions/9461621/format-a-number-as-2-5k-if-a-thousand-or-more-otherwise-900} * * @example * ``` * getFormattedNumber(999) // Returns 1k * getFormattedNumber(1000) // Returns 1k * ``` * */ export declare function getFormattedNumber(num: number): string;