import type { WalletAccount } from '@dynamic-labs-sdk/client'; import type { Account, Chain, HttpTransportConfig, Transport, WalletClient, WalletClientConfig } from 'viem'; import type { EvmWalletProvider } from '../EvmWalletProvider.types'; export type EvmWalletProviderWithCustomViemClient = EvmWalletProvider & { createViemWalletClient: (args: { httpTransportConfig?: HttpTransportConfig; viemWalletClientConfig?: Omit; walletAccount: WalletAccount; }) => Promise>; }; //# sourceMappingURL=EvmWalletProviderWithCustomViemClient.types.d.ts.map