import type { Fetcher } from "./fetcher"; import type { TransferRequest, TransferResponse } from "./types"; /** * Asset transfer API operations. * * Returns ready-to-sign transaction data for moving NFTs or tokens from * one wallet to another. The endpoint supports multi-asset transfers in * a single request; the response is an ordered list of transactions to * submit onchain. */ export declare class AssetsAPI { private fetcher; constructor(fetcher: Fetcher); /** * Build transactions to transfer one or more NFTs or fungible tokens. */ transferAssets(request: TransferRequest): Promise; }