import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { InvoicePaymentReminderStatus } from "./InvoicePaymentReminderStatus"; export declare const InvoicePaymentReminder: core.serialization.ObjectSchema; export declare namespace InvoicePaymentReminder { interface Raw { uid?: string | null; relative_scheduled_days?: (number | null | undefined) | null; message?: (string | null | undefined) | null; status?: InvoicePaymentReminderStatus.Raw | null; sent_at?: string | null; } }