import type { Account, Chain, Transport, WalletClient } from "viem"; export type ConnectedWalletClient = WalletClient; export type SupportedChain = "polygon" | "polygon-amoy"; export declare function createConnectedWallet({ privateKey, chain }: { privateKey: string; chain: SupportedChain; }): ConnectedWalletClient; //# sourceMappingURL=wallet.d.ts.map