/** Indicates how Square delivers the [invoice](entity:Invoice) to the customer. */ export declare const InvoiceDeliveryMethod: { readonly Email: "EMAIL"; readonly ShareManually: "SHARE_MANUALLY"; readonly Sms: "SMS"; }; export type InvoiceDeliveryMethod = (typeof InvoiceDeliveryMethod)[keyof typeof InvoiceDeliveryMethod];