import type { CreateConnectorFn } from 'wagmi'; import type { KryptogoKitWalletConnectParameters, WalletList } from './Wallet'; export interface ConnectorsForWalletsParameters { projectId?: string; appName: string; appDescription?: string; appUrl?: string; appIcon?: string; walletConnectParameters?: KryptogoKitWalletConnectParameters; } export declare const connectorsForWallets: (walletList: WalletList, { projectId, walletConnectParameters, appName, appDescription, appUrl, appIcon, }: ConnectorsForWalletsParameters) => CreateConnectorFn[];