import type { ResolvedConfig } from "./config.ts"; /** * Local directories the sandbox must open (read + write) for a task. Covers two * source kinds: a `todo-txt` source's completion-writeback target (the todo * file's parent dir plus its tasks dir) and a `shell` source's declared * `sandboxWritePaths`. Scoped to the source that owns the task by the task-id * prefix; an un-prefixed id grants every eligible source's paths. */ export declare function taskSourceWritePathsForCompletion(input: { config: Pick; taskId: string; workingDir: string; }): readonly string[]; //# sourceMappingURL=taskSourceFilesystem.d.ts.map