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