import type { Fetcher } from "./fetcher"; import type { TransactionReceiptRequest, TransactionReceiptResponse } from "./types"; /** * Transaction-related API operations */ export declare class TransactionsAPI { private fetcher; constructor(fetcher: Fetcher); /** * Get the receipt/status for a submitted transaction. * Works for all transaction types: listing fulfillments, cross-chain buys and * mints, sweeps, offer fulfillments, and token swaps. Poll this endpoint to * check completion status. */ getTransactionReceipt(request: TransactionReceiptRequest): Promise; }