import { ExtractConfig, PackageFile } from '../common'; export declare const pythonVersions: string[]; export declare function resetModule(): void; export declare function parsePythonVersion(str: string): number[]; export declare function getPythonAlias(): Promise; interface PythonSetup { extras_require: string[]; install_requires: string[]; } export declare function extractSetupFile(_content: string, packageFile: string, config: ExtractConfig): Promise; export declare function extractPackageFile(content: string, packageFile: string, config: ExtractConfig): Promise; export {};