import { Aspect } from "@atomist/sdm-pack-fingerprints";
export interface PythonDependency {
    libraryName: string;
    requirementLine: string;
}
/**
 * Find Python dependencies in requirements.txt
 *
 * Use this to find out what Python dependencies are declared
 * in your project, and what versions are specified.
 *
 * This fingerprints each line that looks like a dependency.
 * The entire line becomes the data of the fingerprint.
 *
 * The displayed value is the whole line, minus the name.
 */
export declare const PythonDependencies: Aspect;
export declare function findDependenciesFromRequirements(requirementsTxt: string): PythonDependency[];
//# sourceMappingURL=pythonDependencies.d.ts.map