import { Chain } from '../../types'; export declare type SwitchNetworkArgs = { chainId: number; }; export declare type SwitchNetworkResult = Chain; export declare function switchNetwork({ chainId, }: SwitchNetworkArgs): Promise;