import { FeeRate, Network, TxParams } from '@mayaprotocol/xchain-client'; import { Address } from '@mayaprotocol/xchain-util'; import { UTXO } from './common'; export declare type LedgerTxInfo = { utxos: UTXO[]; newTxHex: string; }; export declare type LedgerTxInfoParams = Pick & { feeRate: FeeRate; sender: Address; network: Network; sochainUrl: string; nodeApiKey: string; };