import type { PackageFile } from '../types';
import type { DependencyBetweenFiles, PipCompileArgs } from './types';
export declare function sortPackageFiles(depsBetweenFiles: DependencyBetweenFiles[], packageFiles: Map<string, PackageFile>): PackageFile[];
export declare function generateMermaidGraph(depsBetweenFiles: DependencyBetweenFiles[], lockFileArgs: Map<string, PipCompileArgs>): string;
export declare function inferCommandExecDir(outputFilePath: string, outputFileArg: string | undefined): string;
