import { ARInvoiceLine } from "./ARInvoiceLine"; export declare class ARInvoice { Id: string | null; Tenant: number | null; InvoiceLines: ARInvoiceLine[]; InvoiceNumber: string; AmountInInvoiceCurrency: number | null; InvoiceDate: Date | null; DueDate: Date | null; StatusName: string | null; DraftNumber: string | null; ShipmentsNumbers: string | null; AmountDue: number | null; InvoiceCurrencyCode: string | null; IsPrinted: boolean; PrintNotes: string | null; }