import type { Language, LanguageDetectionResult, LanguageProvider } from "./types"; export declare const detectNodePackageManager: (rootDir: string) => string; export declare const isPoetryPyproject: (filePath: string) => boolean; export declare const detectPythonPackageManagerForManifest: (manifestPath: string) => string; export declare const detectPythonPackageManager: (rootDir: string) => string; export declare const detectLanguage: (rootDir: string) => LanguageDetectionResult[]; export declare const detectPrimaryLanguage: (rootDir: string) => LanguageDetectionResult | null; export declare const getLanguageProvider: (language: Language) => LanguageProvider;