/** * Formats a given time in seconds to a MM:SS string representation. * * @function * @param {number} time - The time in seconds to be formatted. * @returns {string} The formatted time string in MM:SS format. * @example * Returns "02:30" * formatTime(150); */ export declare const formatTime: (time: number) => string;