import { LegacyUtxoWallet } from '../../abstract/LegacyUtxoWallet/LegacyUtxoWallet';
import { Transports } from '../../Transports';
import { DogecoinInfo } from '../../../CurrencyInfo';
import { UtxoCurrencyUtils } from '../../../CurrencyUtils/abstract/UtxoCurrencyUtils/UtxoCurrencyUtils';
export declare class DogecoinWallet extends LegacyUtxoWallet<typeof DogecoinInfo> {
    transports: Transports;
    constructor(utils: UtxoCurrencyUtils<typeof DogecoinInfo>, transports: Transports);
    getAddress(): Promise<string>;
}
