export declare const BRIDGE_HOOK_MARKER = "#brv-claude-plugin"; /** * Resolve the executable prefix for hook commands. * Returns ONLY the executable part — callers append subcommand via buildHookCommand(). * * Production: "/usr/local/bin/brv-claude-plugin" * Dev: "node /abs/path/to/dist/cli.js" */ export declare function resolveBridgeExecutable(): string; /** * Build the full hook command string for a subcommand. * Appends the marker as a trailing shell comment so isBridgeHook() works * regardless of install path or directory name. * * "/usr/local/bin/brv-claude-plugin ingest #brv-claude-plugin" * "node /tmp/bridge/dist/cli.js sync #brv-claude-plugin" */ export declare function buildHookCommand(subcommand: string): string; /** * Check if a hook object was installed by this bridge. * Matches on BRIDGE_HOOK_MARKER, not path text. */ export declare function isBridgeHook(hook: Record): boolean;