import { BaseAPIRequestFactory } from './baseapi';
import { Configuration } from '../configuration';
import { RequestContext, ResponseContext, HttpInfo } from '../http/http';
import { CreateTransferRequest } from '../models/CreateTransferRequest';
import { CreateTransferResponse } from '../models/CreateTransferResponse';
import { CursorPageTransaction } from '../models/CursorPageTransaction';
import { EstimateFeeRequest } from '../models/EstimateFeeRequest';
import { EstimateFeeResponse } from '../models/EstimateFeeResponse';
import { SignMessageRequest } from '../models/SignMessageRequest';
import { SignMessageResponse } from '../models/SignMessageResponse';
import { Transaction } from '../models/Transaction';
export declare class TransactionsApiRequestFactory extends BaseAPIRequestFactory {
    v1TransactionsEstimateFee(estimateFeeRequest: EstimateFeeRequest, _options?: Configuration): Promise<RequestContext>;
    v1TransactionsList(walletIds?: Array<string>, chainIds?: Array<string>, tokenIds?: Array<string>, assetIds?: Array<string>, hash?: string, status?: string, cursor?: string, limit?: number, _options?: Configuration): Promise<RequestContext>;
    v1TransactionsRetrieve(transactionId: string, _options?: Configuration): Promise<RequestContext>;
    v1TransactionsSignMessage(signMessageRequest: SignMessageRequest, _options?: Configuration): Promise<RequestContext>;
    v1TransactionsTransfer(createTransferRequest: CreateTransferRequest, _options?: Configuration): Promise<RequestContext>;
}
export declare class TransactionsApiResponseProcessor {
    v1TransactionsEstimateFeeWithHttpInfo(response: ResponseContext): Promise<HttpInfo<EstimateFeeResponse>>;
    v1TransactionsListWithHttpInfo(response: ResponseContext): Promise<HttpInfo<CursorPageTransaction>>;
    v1TransactionsRetrieveWithHttpInfo(response: ResponseContext): Promise<HttpInfo<Transaction>>;
    v1TransactionsSignMessageWithHttpInfo(response: ResponseContext): Promise<HttpInfo<SignMessageResponse>>;
    v1TransactionsTransferWithHttpInfo(response: ResponseContext): Promise<HttpInfo<CreateTransferResponse>>;
}
