export declare class Watch { private lastTime; timings: { [key: string]: number; }; /** * Creates and starts a watch */ constructor(); stop(name: string): void; } export declare function getPreciseTime(): number;