import type { WalletClient } from "./client"; export type { WalletClient }; /** * Create a Wallet API client with eager loading * * All methods are imported immediately. This client is primarily used for testing * where lazy loading is not needed. * * @param apiKey - Helius API key * @returns WalletClient instance with eagerly-loaded methods * * @example * ```ts * import { makeWalletClientEager } from "helius-sdk/wallet/client.eager"; * * const walletClient = makeWalletClientEager("your-api-key"); * const identity = await walletClient.getIdentity({ wallet: "..." }); * ``` */ export declare const makeWalletClientEager: (apiKey: string, userAgent?: string) => WalletClient; //# sourceMappingURL=client.eager.d.ts.map