import { Decimal } from 'decimal.js';
import { TradingPairLimitJSON } from '../interfaces';
/** Trading pair limit */
export declare class TradingPairLimit {
    /** Trading limit in base currency */
    base: Decimal;
    /** Trading limit in quote currency */
    quote: Decimal;
    /** @internal */
    constructor(json: TradingPairLimitJSON);
}
