/** * Given milliseconds, returns a friendly string representing the time. * If the time is less than 5 seconds, it will be rounded to the nearest * millisecond. If the time is less than 1 minute, it will be displayed * in seconds. If the time is less than 1 hour, it will be displayed in * minutes and seconds. If the time is less than 1 day, it will be * displayed in hours, minutes, and seconds. */ export declare function formatTime(time: number): string; //# sourceMappingURL=formatTime.d.ts.map