import { BitcoinCashApi, ChainGateClient } from 'chaingate-client';
import { LegacyUtxo } from '../../abstract/LegacyUtxo/LegacyUtxo';
import { CurrencyProviders } from '../../CurrencyProviders';
export declare class Dogecoin extends LegacyUtxo<'doge'> {
    currencyProviders: CurrencyProviders;
    constructor(client: ChainGateClient, api: BitcoinCashApi, currencyProviders: CurrencyProviders);
    getAddress(): Promise<string>;
}
