import { UnitGroupConfig, UnitConfig } from './types'; type PercentUnit = 'percent' | 'percent-decimal' | '%'; export type PercentFormatOptions = { unit?: PercentUnit; decimalPlaces?: number; }; export declare const PERCENT_GROUP_CONFIG: UnitGroupConfig; export declare const PERCENT_UNIT_CONFIG: Readonly>; export declare function formatPercent(value: number, { unit, decimalPlaces }: PercentFormatOptions): string; export {}; //# sourceMappingURL=percent.d.ts.map