///
export declare type Witness = {
value: number;
script: Buffer;
};
export declare type UTXO = {
hash: string;
index: number;
value: number;
witnessUtxo: Witness;
txHex?: string;
};
export declare type NodeAuth = {
username: string;
password: string;
};
export declare type BroadcastTxParams = {
txHex: string;
nodeUrl: string;
auth?: NodeAuth;
customRequestHeaders: Record;
};