interface Currency { format: string; } export interface FormatSettings { prefix?: string; suffix?: string; thousandSeparator?: boolean | string; decimalSeparator?: boolean | string; decimalScale?: number; fixedDecimalScale?: boolean; allowNegative?: boolean; } export declare function getPriceFormat(currency: Currency): FormatSettings; export declare const PERCENT_FORMAT: FormatSettings; export declare const WEIGHT_FORMAT: FormatSettings; export {};