import { type SupportedLocale } from '../locales/index.js';
export interface PercentageOptions {
    multiply?: boolean;
    decimals?: number;
    stripZeros?: boolean;
    locale?: SupportedLocale;
    addSpace?: boolean;
}
export declare function formatPercentage(value: number, options?: PercentageOptions): string;
