export function cn(...inputs: any[]): string;
export function formatCurrency(amount: any, currency: string, options: any): string;
export function generateUniqueId(prefix?: string): string;
export function truncateText(text: any, maxLength: any): any;
export function formatDate(date: any, options: any): string;
export function debounce(func: any, wait: any): (...args: any[]) => void;
export function throttle(func: any, limit: any): (...args: any[]) => void;
