/**
 * Converts number into currency format
 */
declare function currencyFormat(val: number, nDecimalDigits?: number, decimalSeparator?: string, thousandsSeparator?: string): string;
export default currencyFormat;
