/** * Hooks Setup Check * * Ensures that husky pre-commit hook is configured to run vibe-validate. * This check creates/modifies .husky/pre-commit to include the vibe-validate * pre-commit command. * * Note: This check does NOT install husky as a dependency. Users should * install husky manually via `npm install -D husky` or `pnpm add -D husky`. */ import type { SetupCheck, CheckResult, FixResult, PreviewResult, FixOptions } from '../setup-engine.js'; export declare class HooksSetupCheck implements SetupCheck { readonly id = "hooks"; readonly name = "Pre-commit Hook Setup"; check(options?: FixOptions): Promise; preview(options?: FixOptions): Promise; fix(options?: FixOptions): Promise; /** * Generate content for a new pre-commit hook */ private generateNewPreCommitHook; /** * Add vibe-validate command to existing pre-commit hook */ private addCommandToPreCommit; } //# sourceMappingURL=hooks-check.d.ts.map