/** * An implementations to get performance of sections of code * @private */ export declare class PerformanceUtil { static started: boolean; static start(): boolean; static end(): boolean; static measure(): PerformanceEntry; static mark(markName: string): void; }