import { CustomCurrencyNumberFormat } from "../../types"; export interface Deps { amount: number | null; currency?: string; inCredits: boolean; locale?: string; numberFormat?: CustomCurrencyNumberFormat; } export declare const formatAmount: ({ amount, inCredits, currency, numberFormat, locale, }: Deps) => string;