import type { PluginInput } from "@opencode-ai/plugin"; interface ToolExecuteInput { tool: string; sessionID: string; callID: string; } interface ToolExecuteOutput { output: string; } export declare function createTaskReminderHook(_ctx: PluginInput): { "tool.execute.after": (input: ToolExecuteInput, output: ToolExecuteOutput) => Promise; event: ({ event }: { event: { type: string; properties?: unknown; }; }) => Promise; }; export {};