import { BaseClientManager } from './base.js'; /** * Client manager implementation for Cursor. * * Responsible for configuring and managing the MCP server integration * for the Cursor code editor application. * * @see {@link https://www.cursor.com/ | Cursor Official Website} */ export declare class CursorClientManager extends BaseClientManager { constructor(); /** * Returns the path to the Cursor configuration file. * * Resolves the platform-specific configuration directory, * ensures the directory exists on disk, and constructs the full path * to the MCP configuration file. * * @returns The absolute path to the configuration file. */ getConfigPath(): string; }