/** Strip currency symbols and commas, return numeric value. */ export declare function moneyToNumber(currencyString: string): number; /** Format a number back to currency string. */ export declare function numberToMoney(amount: number, locale?: string, currency?: string): string; /** Assert two currency strings are approximately equal. */ export declare function assertPricesClose(actual: string, expected: string, precision?: number): void; //# sourceMappingURL=testDataUtilities.d.ts.map