import type { ChorusResult } from "./types.js"; import { type StorePaths } from "./store.js"; export interface WriteRunArtifactsArgs { result: ChorusResult; outputDir: string; actorLabel: "agent" | "voice"; } export declare const RESULTS_WARNING_DIRS = 200; export declare function resultDirForJob(jobId: string, paths?: StorePaths): string; export declare function writeRunArtifacts(args: WriteRunArtifactsArgs): Promise;