import { IExtractionResult, IExtractor } from "./IExtractor";
export declare class ExtractorContainer implements IExtractor {
    private readonly extractors;
    constructor(...extractor: IExtractor[]);
    add(...extractor: IExtractor[]): this;
    readonly extract: () => IExtractionResult;
}
