/** StopWatch allows to measure the difference between time periods */ export declare class StopWatch { /** the time when this StopWatch was started */ private startTime; constructor(); /** * Duration returns a human-readable description of the difference * between the current time and when this StopWatch was created. */ duration(): string; } //# sourceMappingURL=stopwatch.d.ts.map