/// export type ConnectedChain = { id: string; }; export interface WalletConnectorContextState { connect: () => Promise; disconnect: (options: any) => Promise; connecting: boolean; setChain: (options: any) => Promise; chains: any[]; switchChain: (options: { chainId: string; }) => Promise; wallet: any; connectedChain: ConnectedChain | null; settingChain: boolean; } export declare const WalletConnectorContext: import("react").Context; //# sourceMappingURL=walletConnectorProvider.d.ts.map