import type { ToolCheckResult } from '../types.js'; export interface ManagedJqAsset { name: string; version: string; sha256: string; url: string; } export declare const MANAGED_JQ_VERSION: string; export declare const MANAGED_JQ_DOWNLOAD_TIMEOUT_MS: number; export declare function managedJqPath(homeDir?: string): string; export declare function resolveManagedJqAsset(platform?: NodeJS.Platform, arch?: NodeJS.Architecture): ManagedJqAsset | null; export declare function isJqRequiredPlatform(platform?: NodeJS.Platform): boolean; export declare function checkJq(): Promise; /** 复用发布 Skill 内的固定安装器,不调用 Homebrew、apt、yum 或 sudo。 */ export declare function installJq(): Promise; export declare function ensureJq(): Promise; //# sourceMappingURL=jq.d.ts.map