/** * Props for the currency formatter function */ export type CurrencyFormatterOptions = { /** * The locale to use for the currency formatter * @default "en-US" */ locale?: Intl.LocalesArgument; /** * The currency to use for the currency formatter * @default "USD" */ currency?: Intl.NumberFormatOptions["currency"]; }; /** * Helper function for formatting table cells with currency, including i18n support * @param value - The value to format * @param options - The options for the currency formatter * @returns The formatted currency */ export declare const currencyFormatter: (value?: number, options?: CurrencyFormatterOptions) => string | null;