import { type GenerationPlan } from "./generation-plan.js"; import type { GenerationVerification } from "./generation-store.js"; export interface GenerationVerifyOptions { /** 管理服务必须传工作区内私有所有权目录。 */ privateRoot?: string; timeoutMs?: number; signal?: AbortSignal; } /** 进程/凭据隔离,不是恶意插件的网络或文件系统沙箱。 */ export declare function verifyGeneration(directory: string, plan: GenerationPlan, options?: GenerationVerifyOptions): Promise; //# sourceMappingURL=generation-verify.d.ts.map