import { ClassValue } from 'clsx';
export declare function cn(...inputs: ClassValue[]): string;
/**
 * Formats a number as Indian Rupees (₹)
 * @param amount - The amount to format
 * @param options - Formatting options
 * @returns Formatted currency string with ₹ symbol
 */
export declare function formatCurrency(amount: number, options?: Intl.NumberFormatOptions): string;
