import { AddressTxsUtxo, MempoolTxStatus } from '../address/address.dto'; import { Input } from './input.dto'; export interface UtxoWithOwner { utxo: T; utxoOwner: string; sighashType: number | undefined; } export type ProcessedInput = UtxoWithOwner & Input; export interface InputToBeProcessed { utxo: T; owner: string; publicKey: string; mempoolStatus: MempoolTxStatus | undefined; sighashType?: number; } export declare const getInputsToSign: (utxoWithOwner: UtxoWithOwner, index: number, utxo: string) => { address: string; signingIndexes: number[]; sigHash: number | undefined; utxo: string; };