import { Config } from "wagmi"; import { ConnectMutateAsync } from "wagmi/query"; import { WalletInstance } from "./Wallet"; export interface WalletConnector extends WalletInstance { ready?: boolean; connect: () => ReturnType>; showWalletConnectModal?: () => void; recent: boolean; mobileDownloadUrl?: string; extensionDownloadUrl?: string; desktopDownloadUrl?: string; getDesktopUri?: () => Promise; getQrCodeUri?: () => Promise; getMobileUri?: () => Promise; } export declare function useWalletConnectors(mergeEIP6963WithRkConnectors?: boolean): WalletConnector[];