/** * Converts seconds into a formatted time string (e.g., "1h 23m 45s", "5m 30s", "45s") * @param seconds - The number of seconds to format * @returns Formatted time string with hours, minutes, and/or seconds */ export declare function formatTime(seconds: number): string;