export interface RunnerScriptCache { ensureRunnerScript(): Promise; cleanup(): Promise; } export declare function createRunnerScriptCache(tempRoot: string): RunnerScriptCache; /** @internal Test-only initializer for isolated artifact assertions. */ export declare function createRunnerScriptInitializer(tempRoot: string): () => Promise; export declare const ensureRunnerScript: () => Promise;