import UndirectedGraph from './UndirectedGraph';
/**
 * Class for the manipulation of package build collections
 */
export default class BuildCollections {
    private _graph;
    constructor(projectDirectory: string);
    get graph(): UndirectedGraph;
    /**
     * Constructs graph representation of collections
     * @param projectDirectory
     */
    private createGraphOfBuildCollections;
    /**
     * Returns list of packages contained in the same collection as the package
     * @param pkg
     */
    listPackagesInCollection(pkg: string): string[];
    isPackageInACollection(pkg: string): boolean;
}
