import type { Plugin } from "@opencode-ai/plugin"; import type { OhMyCCAgentConfig } from "../config/schema"; type PluginContext = Parameters[0]; type PluginInstance = Awaited>; export type PluginInterface = Pick; export declare function createPluginInterface(args: { ctx: PluginContext; config: OhMyCCAgentConfig; }): PluginInterface; export {};