import { ServerConfig } from '../types/types.js';
export declare const DEFAULT_SERVERS_CONFIG_DIR: string;
/**
 * Gets server configurations from the config directory
 */
export declare const getServerConfigs: () => Promise<ServerConfig[]>;
/**
 * Get a server configuration by name
 */
export declare const getServerConfig: (serverName: string) => Promise<ServerConfig>;
