type Env = {
    walletUrl: string;
};
declare class GlobalConfig {
    #private;
    get version(): string;
    get env(): Env;
    updateWalletUrl(url: string): void;
}
declare const globalConfig: GlobalConfig;
export default globalConfig;
