import { ChatProvider } from "./chat.js"; //#region src/ai-editor/opencode.d.ts interface OpenCodeOptions { url?: string; projectRoot: string; mcpUrl: string; binary?: string; password?: string; username?: string; model?: { providerID: string; modelID: string; }; fetch?: typeof fetch; } /** Keeps all agent mutations inside the revision-aware Editframe MCP service. */ declare function createOpenCodeProvider(options: OpenCodeOptions): Promise; //#endregion export { OpenCodeOptions, createOpenCodeProvider }; //# sourceMappingURL=opencode.d.ts.map