/** * Git Hooks Integration * Generates pre-commit hooks and provides dry-run preview mode. */ export interface HookResult { action: 'generate' | 'preview' | 'status'; hookPath?: string; hookContent?: string; installed?: boolean; existingHook?: boolean; previewFindings?: { check: string; count: number; examples: string[]; }[]; } /** * Manage git hooks: generate, preview, or check status. * @param cwd - The working directory (git repository root). * @param action - The action to perform: 'generate', 'preview', or 'status'. * @returns The hook result with relevant information for the action. */ export declare function manageGitHooks(cwd: string, action: 'generate' | 'preview' | 'status'): Promise; //# sourceMappingURL=git-hooks.d.ts.map