import { TxInputRef, UTxO } from "../../types/transaction"; import { TxPlanArgs } from "../../types/txPlan"; export declare const sortUtxos: (utxos: UTxO[]) => UTxO[]; export declare const matchTxInputRef: (a?: TxInputRef) => (b?: TxInputRef) => boolean; /** * * @param utxos list of utxos to be used * @param txPlanArgs * @returns [arranged spendable utxos, potential collaterals] */ export declare function arrangeUtxos(utxos: UTxO[], txPlanArgs: TxPlanArgs): [UTxO[], UTxO[]]; //# sourceMappingURL=arrangeUtxos.d.ts.map