import { type GenerationDownloadInput } from "./generation-download-types.js"; import { type DownloadOwner } from "./generation-download-state.js"; export interface DownloadExecutionInput extends GenerationDownloadInput { credentialDirectory: string; owner: DownloadOwner; } /** * 只下载到新候选目录;完成并销毁下载进程及其临时授权后才返回。 * 返回不代表依赖兼容或可启动,调用方必须通过独立验证器再提交验证收据。 * 同权限进程不是恶意代码安全沙箱;manifest 与执行入口必须来自受信计划。 */ export declare function executeGenerationDownload(input: DownloadExecutionInput): Promise; //# sourceMappingURL=generation-download-executor.d.ts.map