import type { ITransaction, ITransactionJSON, ITransactionOutput, ITransactionOutputUser } from "./types"; declare function normailzeTransactionOutput(output: ITransactionOutputUser): ITransactionOutput; declare function txJSONToTx(tx: ITransactionJSON): ITransaction; declare function txToTxJSON(tx: ITransaction): ITransactionJSON; export { normailzeTransactionOutput, txToTxJSON, txJSONToTx, };