/** * Workspace Scanner — Git State Detection */ import type { GitState } from "./types.js"; export declare function isGitRepo(rootPath: string): boolean; export declare function getGitState(rootPath: string): GitState | null; //# sourceMappingURL=git.d.ts.map