import type { HookInput, GuardResult } from '../../core/index.js'; /** * Sprint-completion guard: enforces post-implementation gates. * * Single handler, three hook points (branches on hook_event_name): * - PreToolUse:Bash — blocks `gh pr create` if gates incomplete * - Stop — blocks session end if mid-sprint with incomplete gates * - PostToolUse:Bash — auto-detects test pass and marks gate */ export declare function sprintCompletionGuard(input: HookInput, cwd: string): Promise; //# sourceMappingURL=sprint-completion.d.ts.map