import { IAgentConfig } from './IAgent'; import { AgentsMdAgent } from './AgentsMdAgent'; /** * Cursor agent adapter. * Leverages the standardized AGENTS.md approach supported natively by Cursor. * See: https://docs.cursor.com/en/cli/using */ export declare class CursorAgent extends AgentsMdAgent { getIdentifier(): string; getName(): string; applyRulerConfig(concatenatedRules: string, projectRoot: string, _rulerMcpJson: Record | null, agentConfig?: IAgentConfig, backup?: boolean): Promise; getMcpServerKey(): string; supportsMcpStdio(): boolean; supportsMcpRemote(): boolean; supportsNativeSkills(): boolean; supportsNativeSubagents(): boolean; }