import BaseItemModel from '../Abstract/BaseItemModel.js'; import BaseModel from '../Abstract/BaseModel.js'; declare class BillingInvoiceModel extends BaseModel { constructor(entities: any); } declare class BillingInvoiceModelItemModel extends BaseItemModel { orderId: string; subscriptionPlanName: string; currency: string; receiptUrl: string; amount: string; paidAt: string; status: string; constructor(entity: any); toObject: () => { [x: string]: string | number; }; toJSON: () => { created_date: null; modified_date: string; created_by: null; modified_by: null; }; } export { BillingInvoiceModel, BillingInvoiceModelItemModel };