export declare const DEFAULT_CONFIG_PATH: string; export declare const DEPRECATED_CONFIG_FIELDS: string[]; export declare class Config { static get(): Promise; static getSync(): any; static set(newData: any): Promise; static reset(fields?: string[]): Promise; static resetDeprecatedFields(): Promise; }