import { IBillingTotal } from '../interfaces';
export declare class BillingTotalEntity implements IBillingTotal {
addition: number;
cancelled: number;
discount: number;
subtotal: number;
tax: number;
totalAmount: number;
constructor(data?: Partial<BillingTotalEntity>);
}