import type { ActiveRun } from "./types.ts"; export interface SourceWritePolicyInput { cwd: string; run: ActiveRun | undefined; path: string | undefined; } export declare function sourceWriteBlockReason(input: SourceWritePolicyInput): string | undefined;