import { InvoiceLine } from './InvoiceLine';
/** Description of an invoice */
export interface Invoice {
    /** Invoice date */
    date: string;
    /** Invoice reference */
    id: string;
    /** Invoice details */
    lines: InvoiceLine[];
}
//# sourceMappingURL=Invoice.d.ts.map