import { Logger } from '../../common/contracts'; export interface IContentInstrumenterConfig { buildSessionId: string; esModules: boolean; instrumentLineLevel: boolean; newInstrumenter: boolean; skipFilesAndPackagePaths: string[]; skipInstrumentingFilesWithoutSourceMap: boolean; logger?: Logger; workspacePath?: string; } export declare class ContentInstrumenter { private instrumenter; constructor(config: IContentInstrumenterConfig); instrumentContent(content: string, fileKey: string): any; }