import { Address, Network, TxParams } from '@thorwallet/xchain-client';
import { FeeRate } from './client-types';
import { UTXOs } from './common';
export declare type LedgerTxInfo = {
    utxos: UTXOs;
    newTxHex: string;
};
export declare type LedgerTxInfoParams = Pick<TxParams, 'amount' | 'recipient'> & {
    feeRate: FeeRate;
    sender: Address;
    network: Network;
    sochainUrl: string;
    nodeApiKey: string;
};
