export interface ICreditNoteItem {
    description: string;
    amount: number;
    taxCode?: string;
    accountCode?: string;
    accountId?: string;
    quantity?: number;
    itemRefId?: string;
    linkedInvoiceNo?: string;
}
export interface ICreateCreditNotePayload {
    creditNoteNo?: string;
    referenceInvoices: string[];
    issueDate: string;
    currency: string;
    customer: {
        customerId: string;
        name: string;
        email?: string;
        contactNo?: string;
    };
    reason: string;
    items: ICreditNoteItem[];
    remarks?: string;
    createdBy: {
        userId: string;
        name: string;
    };
    systemTag?: string;
}
//# sourceMappingURL=create-credit-note-payload.interface.d.ts.map