/** * codeprism install-hook — installs git hooks for automatic KB updates. * * Works with any editor: Cursor, Windsurf, Claude Code, Zed, Lovable, VS Code. * For editors with the VS Code extension, git hooks are installed automatically. * For Claude Code, Zed, and others — run this once per repo. * * Installed hooks: * post-commit — syncs after each commit (best for non-extension editors) * post-merge — runs sync after `git pull` / `git merge` * post-checkout — runs sync after branch switches (not file checkouts) * post-rewrite — runs sync after `git rebase` */ interface HookOptions { base: string; strict: boolean; engineUrl?: string; } export declare function findGitRoot(cwd: string): string | null; export declare function installHook(cwd: string, opts: HookOptions): Promise; export {}; //# sourceMappingURL=install-hook.d.ts.map