import React from 'react'; interface IAction { type: string; value: any; } export interface IWalletConnectorContext { connected: boolean; chainId: number; address: string; type: string; dialogOpen: boolean; modalOpen: boolean; dispatch: (type: string, value: any) => void; } export declare const DefaultWalletConnectorContext: { connected: boolean; chainId: number; address: string; type: string; dialogOpen: boolean; modalOpen: boolean; dispatch: (_type: string, _value: any) => void; }; export declare const WalletConnectorContext: React.Context; export declare const WalletConnectorReducer: (state: IWalletConnectorContext, action: IAction) => IWalletConnectorContext; export {};