export { recoverConfigurationVerifications } from "./configuration-verify-ownership.js"; export interface ConfigurationVerificationInput { runtimeRoot: string; /** 仅允许管理服务提供;不得接收 HTTP 用户输入。 */ hostEntrypoint?: string; /** 生产调用须指定工作区独占锁保护的私有目录。 */ privateRoot?: string; selection: { adapters: string[]; protocols: string[]; applications: string[]; }; document: Record; signal?: AbortSignal; timeoutMs?: number; } export interface ConfigurationVerification { valid: boolean; /** 结构化字段路径,不包含原始异常文案或配置值。 */ issues: Array<{ path: string[]; message: string; }>; } export declare class ConfigurationVerificationError extends Error { readonly code: "INVALID_INPUT" | "UNSUPPORTED_PLATFORM" | "CANCELLED" | "TIMEOUT" | "WORKER_FAILED" | "CLEANUP_FAILED"; constructor(code: "INVALID_INPUT" | "UNSUPPORTED_PLATFORM" | "CANCELLED" | "TIMEOUT" | "WORKER_FAILED" | "CLEANUP_FAILED"); } /** 隔离插件生命周期与管理凭据,不是恶意插件的文件系统或网络沙箱。 */ export declare function verifyConfiguration(input: ConfigurationVerificationInput): Promise; //# sourceMappingURL=configuration-verify.d.ts.map