#!/usr/bin/env bun /** * test-integrity-guard hook — prevents test tampering (.skip, .only, etc.). * * Single-channel plugin hook (see safety-guard.ts for the pattern). */ import type { HookContext, HookResult } from "@rig/contracts"; export { TEST_INTEGRITY_GUARD_HOOK_ID } from "../hook-ids"; export declare function testIntegrityGuardHandler(ctx: HookContext): Promise;