/** * MCP function implementations for Agent Rules Kit */ interface GetProjectInfoArgs { project_path?: string; } interface InstallRulesArgs { stack?: string; version?: string; architecture?: string; mcp_tools?: string[]; ide?: string; project_path?: string; force?: boolean; global?: boolean; } /** * Gets available options from agent-rules-kit (stacks, MCPs, IDEs, etc.) */ export declare function getAvailableOptions(): Promise<{ content: { type: string; text: string; }[]; }>; /** * Helper function to check if agent-rules-kit is available */ export declare function checkAgentRulesKitAvailable(): Promise; /** * Analyzes a project to detect the technology stack */ export declare function getProjectInfo(args?: GetProjectInfoArgs): Promise<{ content: { type: string; text: string; }[]; }>; /** * Installs appropriate Cursor rules for the project */ export declare function installRules(args?: InstallRulesArgs): Promise<{ content: { type: string; text: string; }[]; }>; export {}; //# sourceMappingURL=functions.d.ts.map