import { AgentRulesOptions } from './set-up-ai-agents/get-agent-rules'; export type { AgentRulesOptions }; export declare function agentsMdPath(root: string): string; export declare function geminiMdPath(root: string): string; export declare function parseGeminiSettings(root: string): any | undefined; export declare function geminiSettingsPath(root: string): string; export declare function claudeMdPath(root: string): string; export declare function claudeMcpJsonPath(root: string): string; export declare function opencodeMcpPath(root: string): string; export declare function codexConfigTomlPath(root: string): string; export declare const nxRulesMarkerCommentStart = ""; export declare const nxRulesMarkerCommentDescription = ""; export declare const nxRulesMarkerCommentEnd = ""; export declare const rulesRegex: RegExp; export interface AgentRulesWrappedOptions { writeNxCloudRules: boolean; useH1?: boolean; } export declare const getAgentRulesWrapped: (options: AgentRulesWrappedOptions) => string; export declare const nxMcpTomlHeader = "[mcp_servers.\"nx-mcp\"]"; /** * Get the MCP TOML configuration based on the Nx version. * For Nx 22+, uses 'nx mcp' * For Nx < 22, uses 'nx-mcp' */ export declare function getNxMcpTomlConfig(nxVersion: string): string;