import { ComposedExchangeJSON } from '../interfaces';
import { Account } from './Account';
import { Quote } from './Quote';
/** Result of the compose exchange method on {@link  Wallet Wallet} object. */
export declare class ComposedExchange {
    /** @internal */
    json: ComposedExchangeJSON;
    /** Debit account. */
    debitAccount: Account;
    /** Credit account. */
    creditAccount: Account;
    /** Exchange rate quote used when composing exchange. */
    quote: Quote;
    /** @internal */
    constructor(json: ComposedExchangeJSON);
}
