import { type ClassValue } from "clsx"; export declare function cn(...inputs: ClassValue[]): string; export declare function formatCurrency(amount: number, currency?: string, options?: Intl.NumberFormatOptions): string; export declare function generateUniqueId(prefix?: string): string; export declare function truncateText(text: string, maxLength: number): string; export declare function formatDate(date: Date, options?: Intl.DateTimeFormatOptions): string; export declare function debounce any>(func: T, wait: number): (...args: Parameters) => void; export declare function throttle any>(func: T, limit: number): (...args: Parameters) => void;