/**
 * Format value as currency amount. Delimited used ', '
 */
export declare const addCurrencyAmountDelimiter: (value?: any) => any;
/**
 * Format value as currency amount and return it to be displayed
 * Use this to display readonly currency amounts on interface
 */
export declare const displayCurrencyAmount: (value?: any, placeholder?: any, noOfDecimals?: any) => any;
