/**
 * Configuration management for Midjourney MCP Server
 */
export interface Config {
    apiKey: string;
    baseUrl: string;
    timeout: number;
    maxRetries: number;
}
/**
 * Validates and returns the configuration
 */
export declare function validateConfig(): Config;
/**
 * Gets the configuration with defaults
 */
export declare function getConfig(): Config;
//# sourceMappingURL=config.d.ts.map