export declare class ConfigManager { private config; constructor(customConfig?: any); get(key: string): any; set(key: string, value: any): void; getAll(): any; }