import { Currency } from './currency';
import { Fee } from './fee';
export interface MixedFee extends Fee {
    ccy: Currency;
    limit_ccy?: Currency;
    limit_max?: number;
    limit_min?: number;
    percentage: number;
    value: number;
}
export declare namespace MixedFee {
    const discriminator: string;
    const attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
}
//# sourceMappingURL=mixedFee.d.ts.map