/** * Git mapper — maps git tool calls to GIT_DIFF / GIT_COMMIT / generic TOOL_CALL. */ import type { EventMapper, MappedEvent } from "./MapperRegistry.js"; export declare class GitMapper implements EventMapper { toolNames: string[]; mapStart(toolName: string, params: Record): MappedEvent; mapEnd(toolName: string, params: Record, result: Record | null, _error?: Error): MappedEvent; } //# sourceMappingURL=git.d.ts.map