import type { Observable } from "rxjs"; import type { IWalletConnectProviderOptions } from "@walletconnect/types"; import type { ConnectionState, EthereumProviderConnectionResult, Maybe } from "@rarible/connector"; import { AbstractConnectionProvider } from "@rarible/connector"; declare const PROVIDER_ID: "walletconnect"; export declare class WalletConnectConnectionProvider extends AbstractConnectionProvider { private readonly config; private readonly instance; private readonly connection; constructor(config: IWalletConnectProviderOptions); private _connect; getId(): string; getConnection(): Observable>; getOption(): Promise>; isAutoConnected(): Promise; isConnected(): Promise; } export {};