import Component from "../../core/dependency/Component";
export declare class Analyzer {
    protected baseBranch: string;
    private static changedComponents;
    constructor(baseBranch: string);
    /**
     *
     * @returns array of components that have changed, can be empty
     */
    protected getChangedComponents(): Promise<Component[]>;
}
