import { Currency } from './currency';
import { FromToPair } from './fromToPair';
export interface CurrencyPair {
    ask_from_to_pair: FromToPair;
    base: Currency;
    bid_from_to_pair: FromToPair;
    fx_convention: CurrencyPair;
    fxconvention: boolean;
    value: string;
    value_with_slash: string;
    terms: Currency;
}
export declare namespace CurrencyPair {
    const discriminator: string;
    const attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
}
//# sourceMappingURL=currencyPair.d.ts.map