import { BigNumber } from "bignumber.js";
/**
 * A representation of the fees incurred when making an order on the exchange
 */
export declare class Fee {
    /**
     * The total amount being charged as a fee
     */
    readonly totalFeeAmount: BigNumber;
    /**
     * The percentage of the order that will be taken as a fee
     */
    readonly feeRate: BigNumber;
    constructor(json: any);
}
