/** * `tryassay hooks install | uninstall | status` and the hidden `tryassay * hook-run` runner. * * install/uninstall/status own the fs read/write of ~/.claude/settings.json * around the pure mutator in ../lib/hooks/settings-mutator.ts. The runner * (../lib/hooks/runner.ts) is what Claude Code invokes per edit. */ export declare function hooksInstallCommand(): Promise; export declare function hooksUninstallCommand(): Promise; export declare function hooksStatusCommand(): Promise; /** Hidden command Claude Code invokes per edit. Always exits 0 (advisory + fail-open). */ export declare function hookRunCommand(): Promise;