import { ILEObject, Targets } from '../targets';
import { FileLog } from '../logger';
export declare class ImpactMarkdown {
    private cwd;
    private targets;
    private relativePaths;
    constructor(cwd: string, targets: Targets, relativePaths: string[]);
    getContent(): string[];
    getImpactFor(theObject: ILEObject): string[];
    getObjectList(): any[];
    static createObjectExpand(objs: ILEObject[]): string;
    static createLogExpand(logs?: FileLog[]): string;
}
