///
import { Config } from './config';
import { EventEmitter } from 'events';
export declare class Inject {
readonly events: EventEmitter;
readonly cfg: Config;
constructor(cfg: Config, events: EventEmitter);
content(content: string, templatePath: string, srcPattern: string, dstPath: string): Promise;
}