export interface GmAmountFormatService { currencyFirst(code: string): boolean; getSeparator(code: string): string; getThousandSeparator(code: string): string; getMaxSizeFractionOf(code: string): number | null; getFormat(code: string): 'symbol' | 'narrowSymbol' | 'code'; }