import type { ExtractConfig, PackageFileContent } from '../types';
import { PyProject } from './schema';
export declare function parsePyProject(content: string, packageFile?: string): PyProject | null;
export declare function extractPackageFile(content: string, packageFile: string, _config?: ExtractConfig): Promise<PackageFileContent | null>;
