import { AutoEncoder } from '@simonbackx/simple-encoding'; import { Payment } from '../members/Payment.js'; import { STInvoiceMeta } from './STInvoiceMeta.js'; export declare class STInvoice extends AutoEncoder { /** * This ID is empty for a pending invoice */ id: string; payment: Payment | null; meta: STInvoiceMeta; /** * If the number is null, no invoice is generated yet. Its still a WIP invoice (not an official one!) */ number: number | null; createdAt: Date | null; updatedAt: Date | null; paidAt: Date | null; negativeInvoiceId: string | null; didSendPeppol: boolean; } //# sourceMappingURL=STInvoice.d.ts.map