declare class ConfigStore {
    private static instance;
    private rpcUrl;
    private envMode;
    private constructor();
    static getInstance(): ConfigStore;
    setRpcUrl(url: string): void;
    getRpcUrl(): string;
    setEnvMode(mode: string): void;
    getEnvMode(): string;
}
export declare const configStore: ConfigStore;
export {};
