import type { HookManager } from "../templates/types.js"; export interface InstallResult { readonly success: boolean; readonly message: string; readonly filePath?: string; } /** * Install a pre-push git hook for the detected hook manager. */ export declare function installPrePushHook(cwd: string, manager: HookManager): Promise; //# sourceMappingURL=hook-installer.d.ts.map