import type { CreateConnectorFn } from 'wagmi'; import type { WalletList } from '../types/Wallet.js'; import type { ParaWalletConnectParameters, Wallet } from '../types/Wallet.js'; import ParaWeb from '@getpara/web-sdk'; export interface WalletListItem extends Wallet { index: number; } export interface ConnectorsForWalletsParameters { para: ParaWeb; createFarcasterConnector?: () => any; projectId: string; appName: string; appDescription?: string; appUrl?: string; appIcon?: string; walletConnectParameters?: ParaWalletConnectParameters; } export declare const connectorsForWallets: (walletList: WalletList, { para, projectId, walletConnectParameters, appName, appDescription, appUrl, appIcon, createFarcasterConnector, }: ConnectorsForWalletsParameters) => CreateConnectorFn[];