import { GITHOOKS_PATH_COMMAND } from "../internals/git-hooks.js"; /** * Local guardrail: a `.githooks/pre-commit` that runs the repo's pre-commit * policy (when present) plus lint/test before a commit lands. Written with * `mode: 0o755` so it is executable. It is opt-in — the user must point git at it * (`git config core.hooksPath .githooks`), which the plan emits as a `doc` rather * than running, because configuring the repo is the human's call. */ export declare function preCommitHook(): string; /** The opt-in wiring command, shown to the human as guidance (never run). */ export { GITHOOKS_PATH_COMMAND as HOOKS_PATH_COMMAND };