import { TxHash } from '@xchainjs/xchain-client';
import { Address } from '@xchainjs/xchain-util';
import { UtxoClientParams } from '@xchainjs/xchain-utxo';
import { Client } from './client';
declare class ClientLedger extends Client {
    constructor(params: UtxoClientParams);
    getApp(): Promise<void>;
    getAddress(): string;
    getAddressAsync(): Promise<Address>;
    transfer(): Promise<TxHash>;
}
export { ClientLedger };
