import { Logger } from '../../../common/contracts'; import { IInstrumentationStrategy } from './instrumentation-strategy.interface'; export declare class CopyAsIsStrategy implements IInstrumentationStrategy { private logger; constructor(logger: Logger); process(inputFile: string, outputFile: string, fileKey: string): Promise; }