import { IAgent, IAgentConfig } from './IAgent'; export declare class OpenCodeAgent implements IAgent { getIdentifier(): string; getName(): string; getDefaultOutputPath(projectRoot: string): Record; applyRulerConfig(concatenatedRules: string, projectRoot: string, rulerMcpJson: Record | null, agentConfig?: IAgentConfig, backup?: boolean): Promise; supportsMcpStdio(): boolean; supportsMcpRemote(): boolean; supportsMcpTimeout(): boolean; supportsNativeSkills(): boolean; }