import { BaseClientManager } from './base.js'; /** * Client manager implementation for Windsurf. * * Responsible for configuring and managing the MCP server integration * for the Windsurf Editor application. * * @see {@link https://windsurf.com/editor | Windsurf Editor} */ export declare class WindsurfClientManager extends BaseClientManager { constructor(); /** * Returns the path to the Windsurf 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; }