import type ParaWeb from '@getpara/web-sdk'; import type { TExternalWallet } from '@getpara/react-common'; import type { Chain, Transport } from 'viem'; import type { WalletList } from '../types/Wallet.js'; import type { WagmiConfigScope } from '../stores/wagmiConfigStore.js'; interface CreateWagmiConfigScopeParameters { para: ParaWeb; appName: string; appDescription?: string; appUrl?: string; appIcon?: string; projectId: string; wallets?: WalletList | TExternalWallet[]; chains: readonly Chain[]; transports?: Record; } export declare const createWagmiConfigScope: ({ para, appName, appDescription, appUrl, appIcon, projectId, wallets, chains, transports, }: CreateWagmiConfigScopeParameters) => WagmiConfigScope; export declare const areWagmiConfigScopesEqual: (left: WagmiConfigScope | null, right: WagmiConfigScope) => boolean; export {};