/** * AWS Infra MCP Server * * MCP server for generating AWS CDK infrastructure code. * Analyzes existing AWS resources and generates type-safe CDK stacks. */ import { type AWSInfraConfig, type AWSInfraState, type ToolResponse } from './types.js'; export declare class AWSInfraMCPServer { private server; private projectPath; constructor(projectPath?: string); private setupHandlers; private createToolContext; run(): Promise; } export declare function createDefaultConfig(projectName: string, region: string, profile?: string): AWSInfraConfig; export declare function createDefaultState(): AWSInfraState; export declare function saveConfig(configRoot: string, config: AWSInfraConfig): void; export declare function saveState(configRoot: string, state: AWSInfraState): void; export declare function createToolResponse(success: boolean, message: string, options?: Partial): ToolResponse; //# sourceMappingURL=server.d.ts.map