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