/** * `adapters hooks [args]` — manage and dispatch hooks. * * Subcommands: * discover List native hook types supported by the harness. * list List registered hooks (project + global). * add [--handler builtin|command|script] [--target ] [--id ] [--global] * remove [--global] * set [--priority N] [--enabled true|false] [--target ] * handle Read JSON payload on stdin, dispatch, emit unified result. */ import type { AgentMuxClient } from '@a5c-ai/comm-adapter'; import type { ParsedArgs } from '../parse-args.js'; import type { FlagDef } from '../parse-args.js'; export declare const HOOKS_FLAGS: Record; export declare function hooksCommand(_client: AgentMuxClient, args: ParsedArgs): Promise;