export declare class Timer {
    name: string;
    startTime: Date;
    private lastTime;
    constructor(name: string);
    start(): this;
    step(): this;
    step(name?: string): this;
    stop(): void;
    private diff;
}
//# sourceMappingURL=timer.d.ts.map