export declare type Config = { cache: 'datastore' | 'memory' | 'filesystem' | null; cacheConfig: { [key: string]: string; }; timeout: number; port: string; host: string; width: number; height: number; reqHeaders: { [key: string]: string; }; headers: { [key: string]: string; }; puppeteerArgs: Array; renderOnly: Array; closeBrowser: boolean; }; export declare class ConfigManager { static config: Config; static getConfiguration(): Promise; }