import type { ToolDef } from './provider-base.js'; import type { ToolDispatcher } from './tool-dispatcher.js'; export declare const GIT_READ_SAFE: Set; export declare function isGitToolName(name: string): boolean; export declare function getGitTools(): ToolDef[]; export interface GitContext { cwd: string; } export declare function buildGitDispatcher(ctx: GitContext): ToolDispatcher; /** Test helper: path join under cwd. */ export declare function _joinUnderCwdForTest(cwd: string, rel: string): string; //# sourceMappingURL=git-dispatcher.d.ts.map