/** * Agent adapter: Cursor * * MCP config : .cursor/mcp.json (project-level) * Hint file : .cursor/rules/webiny.mdc * * Docs: https://docs.cursor.com/context/model-context-protocol */ import type { IUi } from "../ui.js"; import type { AgentPreset } from "./types.js"; export declare const preset: AgentPreset; interface InitParams { ui: IUi; cwd: string; } export declare function init({ ui, cwd }: InitParams): Promise; export {};