export declare class Stopwatch { readonly started: number; stopped?: number; constructor(started: number); stop(): TrackedDuration; toString(): string; } export declare class TrackedDuration { readonly started: number; readonly stopped: number; readonly durationMS: number; constructor(started: number, stopped: number); toString(): string; }