import { Detail } from './Detail';
import { Price } from '../../order/Price';
/** Details of fees regardless of the consumption */
export interface FlatFee {
    /** Detailed listing of all flat fees */
    details: Detail[];
    /** Total price of the flat fee part of associated plans */
    totalPrice: Price;
}
//# sourceMappingURL=FlatFee.d.ts.map