import type { Effect } from "effect"; import { Context } from "effect"; import type { WalletClient } from "viem"; import type { WalletNotConnectedError, WrongNetworkError } from "../../core/errors/index.js"; export type WalletClientServiceShape = { get: (chainId: number) => Effect.Effect; }; declare const WalletClientService_base: Context.TagClass; export declare class WalletClientService extends WalletClientService_base { } export {}; //# sourceMappingURL=wallet-client.d.ts.map