import type { NumberFormattingOptions } from '.'; /** * Converts from a number to a string like "1k" or "100m". * @param number - number to format * @param options - options * @returns Returns 0 when dates are equal. -1 when date1 less than date2. 1 when date1 greater than date2. */ declare function shortFormat(number: number | string, options: NumberFormattingOptions): string; export default shortFormat;