import type { CurrencyFormatOptions } from "../types";
/**
 * Formats a monetary amount in Tunisian Dinar
 * @param amount - The amount to format
 * @param options - Formatting options
 * @returns formatted amount with currency symbol
 */
export declare const formatCurrency: (amount: number, options?: CurrencyFormatOptions) => string;
