export type CppPerformanceMeasure = { pid: string; cpu: string; ram: string; atrace: string; timestamp: number; }; export declare const parseCppMeasure: (measure: string) => CppPerformanceMeasure;