/** * Generator for .env file and .env.example file */ import { OpenAPIV3 } from 'openapi-types'; /** * Generates the content of .env.example file for the MCP server * * @param securitySchemes Security schemes from the OpenAPI spec * @returns Content for .env.example file */ export declare function generateEnvExample(securitySchemes?: OpenAPIV3.ComponentsObject['securitySchemes']): string; /** * Generates dotenv configuration code for the MCP server * * @returns Code for loading environment variables */ export declare function generateDotenvConfig(): string;