export declare class PerformanceTrackerImpl { start: (client: string) => void; end: (mark: string) => { duration: number; startTime: number; }; clear: (client?: string) => void; }