import { Price } from '../order/Price';
import { LongPrice } from '../order/LongPrice';
/** Information about a Bill entry */
export interface BillDetail {
    /**  */
    billDetailId: string;
    /**  */
    description: string;
    /**  */
    domain: string;
    /**  */
    periodEnd?: string;
    /**  */
    periodStart?: string;
    /**  */
    quantity: string;
    /**  */
    totalPrice: Price;
    /**  */
    unitPrice: LongPrice;
}
//# sourceMappingURL=BillDetail.d.ts.map