import type { Pagination } from "../../shared/models/client"; import { TxHistoryRequest, TxHistoryResponse } from "../../shared/models/transactions/Transactions"; /** * If you don't mind using axios, * you can use the paginated endpoints provided by the client * However this endpoint allows you to pass in your own querying library */ export declare function paginateQuery(initialRequest: T, query: (request: T) => Promise, pageFromResponse: (resp: undefined | Response) => Pagination["rangeStart"]): Promise; export declare function paginatedTransactionHistory(urlBase: string, initialRequest: Omit): Promise;