import type { AvailableSkill } from "../../agents/dynamic-agent-prompt-builder"; import type { HookName, OpenCodeCodexOrchConfig } from "../../config"; import type { LoadedSkill } from "../../features/opencode-skill-loader/types"; import type { PluginContext } from "../types"; export type SkillHooks = Record; export declare function createSkillHooks(_args: { ctx: PluginContext; pluginConfig: OpenCodeCodexOrchConfig; isHookEnabled: (hookName: HookName) => boolean; safeHookEnabled: boolean; mergedSkills: LoadedSkill[]; availableSkills: AvailableSkill[]; }): SkillHooks;