export type PercentageDecimals = 1 | 2; /** Format a ratio as a locale-aware percentage with an exact, supported precision. */ export declare function formatPercentage(ratio: number, decimals?: PercentageDecimals, locale?: string): string;