interface SteemConfig { nodes?: string[]; address_prefix?: string; chain_id?: string; debug?: boolean; debug_warnings?: boolean; } export declare class Config { private config; get(key: string): unknown; getBoolean(key: string): boolean; getNumber(key: string): number; getString(key: string): string; set(key: string, value: unknown): void; all(): { [key: string]: unknown; }; } export declare const getConfig: () => Config; export declare const setConfig: (newConfig: Partial) => void; export declare const resetConfig: () => void; export declare const setOptions: (newConfig: Partial) => void; export declare function get(key: string): unknown; export {};