import { Currency } from './currency';
import { Fee } from './fee';
export interface PercentWithLimit extends Fee {
    limit_ccy: Currency;
    max?: number;
    min?: number;
    percentage: number;
}
export declare namespace PercentWithLimit {
    const discriminator: string;
    const attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
}
//# sourceMappingURL=percentWithLimit.d.ts.map