export declare class PerformanceProfiler { started: number; description: string; stopped: number; duration: number; constructor(description?: string); stop(description?: string | null, log?: boolean): number; private now; static profile(description: string, promise: Promise | (() => Promise)): Promise; }