import { BigNumber } from "bignumber.js";
/**
 * An aggregated level in the orderbook, containing the total
 * amount of token available to purchase at a certain price
 */
export declare class PriceLevel {
    /**
     * The price of the tokens
     */
    readonly price: BigNumber;
    /**
     * The total aggregated amount of tokens available for this price
     */
    readonly amount: BigNumber;
    constructor(json: any);
}
