import { ProjectAnalysis, TechnologyElement } from "../ProjectAnalysis"; import { Classification } from "../ProjectAnalyzer"; import { TechnologyClassification } from "../TechnologyScanner"; import { PushMessage } from "./messageGoal"; export declare function allTechnologyElements(projectAnalysis: ProjectAnalysis): TechnologyElement[]; export declare function allTechnologyClassifications(classification: Classification): TechnologyClassification[]; export declare function allMessages(classification: Classification): PushMessage[]; /** * Is this project usable as a seed? */ export declare function isUsableAsSeed(fpa: ProjectAnalysis): boolean;