import { type Address, type PublicClient, type WalletClient } from 'viem'; import { type NetworkIdentifier } from '../chains.js'; export declare function resetPublicClientCache(): void; /** * Get a public client for a specific network */ export declare function getPublicClient(network?: NetworkIdentifier): PublicClient; /** * Get a wallet client using the configured wallet provider */ export declare function getWalletClientFromProvider(network?: string): Promise; /** * Get an EVM address from the configured wallet provider */ export declare function getAddressFromProvider(): Promise
;