import { ProjectPredicate } from "@atomist/sdm"; import { TechnologyElement } from "../../analysis/ProjectAnalysis"; import { TechnologyScanner } from "../../analysis/TechnologyScanner"; /** * Return a largely empty TechnologyElement that indicates the presence * of a technology we're not otherwise interested in. Useful for querying. * @param elementIdentification element identification * @param test predicate determining whether the project satisfies this element. * For example, does it have a particular file? */ export declare function presenceTestedElementScanner(elementIdentification: Pick, test: ProjectPredicate): TechnologyScanner;