interface ServerConfig { yapiBaseUrl: string; yapiToken: string; port: number; yapiCacheTTL: number; yapiLogLevel: string; configSources: { yapiBaseUrl: "cli" | "env" | "default"; yapiToken: "cli" | "env" | "default"; port: "cli" | "env" | "default"; yapiCacheTTL: "cli" | "env" | "default"; yapiLogLevel: "cli" | "env" | "default"; }; } export declare function getServerConfig(): ServerConfig; export {};