import type { ExtensionContext, VerifierState } from "./types.js"; import type { ToolCallEvent, ToolCallEventResult } from "@earendil-works/pi-coding-agent"; export interface ReadOnlyPolicyDeps { state: VerifierState; } export declare function createReadOnlyPolicy(deps: ReadOnlyPolicyDeps): { toolCallHandler: (event: ToolCallEvent, _ctx: ExtensionContext) => ToolCallEventResult; }; //# sourceMappingURL=read-only-policy.d.ts.map