export declare type Env = 'development' | 'production'; export declare const env: Env; export declare type Net = 'devnet' | 'testnet' | 'mainnet'; export declare const net: Net; export declare const onSwitchNetwork: (value: Net) => void; export declare type ChainId = 101 | 102 | 103; export declare const chainId: ChainId; export declare const rpc: string;