/** * Arial Server - Configuration loading */ import type { ServerConfig, Result } from './types.js'; export interface ConfigError { code: 'FILE_NOT_FOUND' | 'PARSE_ERROR' | 'VALIDATION_ERROR'; message: string; } /** * Load server configuration from file */ export declare function loadConfig(configPath?: string): Promise>; //# sourceMappingURL=config.d.ts.map