import { AppKit } from '@web3modal/base'; import type { AppKitOptions } from '@web3modal/base'; import { type AdapterOptions } from '@web3modal/base/adapters/evm/ethers'; import { type Chain, type EthersStoreUtilState } from '@web3modal/scaffold-utils/ethers'; export type { AdapterOptions } from '@web3modal/base/adapters/evm/ethers'; export { defaultConfig } from '@web3modal/base/adapters/evm/ethers'; export type EthersAppKitOptions = Omit, 'adapters' | 'sdkType' | 'sdkVersion'> & AdapterOptions; export declare function createWeb3Modal(options: EthersAppKitOptions): AppKit;