import * as hyperliquid from '@nktkas/hyperliquid'; import { SuccessResponse } from '@nktkas/hyperliquid/api/exchange'; export type SendSpotAssetResult = { sendResult: SuccessResponse | hyperliquid.ErrorResponse; }; /** * Send spot assets (USDC or other tokens) to another Hyperliquid spot account */ export declare function sendSpotAsset({ transport, pkpPublicKey, destination, token, amount, useTestnet, }: { transport: hyperliquid.HttpTransport; pkpPublicKey: string; destination: string; token: string; amount: string; useTestnet?: boolean; }): Promise; //# sourceMappingURL=send-spot-asset.d.ts.map