/** The status of a payment request reminder. */ export declare const InvoicePaymentReminderStatus: { readonly Pending: "PENDING"; readonly NotApplicable: "NOT_APPLICABLE"; readonly Sent: "SENT"; }; export type InvoicePaymentReminderStatus = (typeof InvoicePaymentReminderStatus)[keyof typeof InvoicePaymentReminderStatus];