import { type DynamicClient, type WalletAccount } from '@dynamic-labs-sdk/client'; import type { WaasProvider } from '@dynamic-labs-sdk/client/waas/core'; import type { Account, Chain, HttpTransportConfig, Transport, WalletClient, WalletClientConfig } from 'viem'; type CreateViemWalletClientForWaasParams = { httpTransportConfig?: HttpTransportConfig; viemWalletClientConfig?: Omit; waasProvider: WaasProvider; walletAccount: WalletAccount; }; /** @not-instrumented */ export declare const createViemWalletClientForWaas: ({ waasProvider, walletAccount, httpTransportConfig, viemWalletClientConfig, }: CreateViemWalletClientForWaasParams, dynamicClient: DynamicClient) => Promise>; export {}; //# sourceMappingURL=createViemWalletClientForWaas.d.ts.map