import type { Cursor, Operation, Page } from "@ledgerhq/coin-module-framework/api/index";
import { CryptoCurrency } from "@ledgerhq/ledger-wallet-framework/types";
/**
 * Returns list of operations associated to an account.
 * @param partyId Account partyId
 * @param minHeight Minimum block height
 * @param cursor Pagination cursor
 * @param limit Max number of operations
 * @returns Operations found and the next cursor for pagination.
 */
export declare function listOperations(currency: CryptoCurrency, partyId: string, minHeight: number, cursor?: Cursor, limit?: number, _order?: "asc" | "desc"): Promise<Page<Operation>>;
//# sourceMappingURL=listOperations.d.ts.map