export type FormatType = 'nepali' | 'international' | 'locale';
export interface CurrencyFormatOptions {
    locale?: string;
    currency?: string;
    prefix?: string;
    showPrefix?: boolean;
    format?: FormatType;
}
export declare function formatCurrency(amount: number, options?: CurrencyFormatOptions): string;
