import type { Address } from 'abitype'; import type { Account } from '../accounts/types.js'; import type { Chain } from '../types/chain.js'; import type { RpcSchema } from '../types/eip1193.js'; import type { Prettify } from '../types/utils.js'; import type { ClientConfig } from './createClient.js'; import type { Transport } from './transports/createTransport.js'; export type TestClientMode = 'anvil' | 'hardhat' | 'ganache'; export type TestClientConfig = Prettify, 'account' | 'cacheTime' | 'chain' | 'key' | 'name' | 'pollingInterval' | 'rpcSchema' | 'transport'> & { /** Mode of the test client. */ mode: mode | ('anvil' | 'hardhat' | 'ganache'); }>; //# sourceMappingURL=createTestClient.d.ts.map