export declare class Stopwatch { private startTime?; private endTime?; start(): void; stop(): number; duration(): number; startedAt(): string; }