export interface ClientConfig { server: string; jwtSecret: string; forceDownloadViaServer: boolean; clientId: string; standbyPool: string[]; downloadDir: string; maxLength: number; blocked: string[]; cookies: string | undefined; } export declare function getConfig(cfgPath?: string): Promise;