export declare const ONNX_RUNTIME_VERSION = "1.24.4"; export declare function getOnnxLibraryName(): string; export declare function getManualInstallHint(): string; export declare function findIgnoredWindowsSystemOnnxRuntime(): string | null; export declare function findSystemOnnxRuntime(): string | null; export declare function findCachedOnnxRuntime(storageDir: string): string | null; /** * Detect an installed ONNX Runtime's advertised version by walking the * shared-library filename suffixes that Microsoft ships. Returns null when * the version can't be determined. */ export declare function detectOrtVersion(libDir: string): string | null; /** Minimum major.minor required by AFT's bundled ort crate. */ export declare const REQUIRED_ORT_MAJOR = 1; export declare const REQUIRED_ORT_MIN_MINOR = 20; export declare function isOrtVersionCompatible(version: string): boolean; //# sourceMappingURL=onnx.d.ts.map