/** * Hermes hook translator — emits a Python plugin stub at * ~/.hermes/plugins/.py that registers itself with Hermes' Python * plugin system and shells out to the AIWG hook command. * * Hermes' hook surface per the parity assessment is Python-plugin-based; * shelling out from Python is a common pattern, so the emitted plugin is * a thin wrapper that subprocess.run()s the canonical AIWG command. */ import type { HookSource, TranslateOptions, TranslateResult } from './types.js'; export declare function translateForHermes(source: HookSource, options: TranslateOptions): Promise; //# sourceMappingURL=hermes-translator.d.ts.map