interface ProfilerLog { time: number; task: string; } export declare class Profiler { private baseline; logs: ProfilerLog[]; setBaseline(): void; mark(task?: string): void; dumpAsCsv(): void; } export {}; //# sourceMappingURL=Profiler.d.ts.map