/** * Format the quotient of two numbers. * * By default, it will return a quotient in millions and use zero decimal places and use grouping. * * Example: `formatQuotient(2500000, { divisor: 10 })` returns `250,000`. */ declare function formatQuotient(dividend: number, options?: FormatQuotientOptions): string; interface FormatQuotientOptions { decimalPlaces?: number; divisor?: number; unit?: string; useGrouping?: boolean; } export { type FormatQuotientOptions, formatQuotient };