/** Indicates the Square product used to process a transaction. */ export declare const TransactionProduct: { readonly Register: "REGISTER"; readonly ExternalApi: "EXTERNAL_API"; readonly Billing: "BILLING"; readonly Appointments: "APPOINTMENTS"; readonly Invoices: "INVOICES"; readonly OnlineStore: "ONLINE_STORE"; readonly Payroll: "PAYROLL"; readonly Other: "OTHER"; }; export type TransactionProduct = (typeof TransactionProduct)[keyof typeof TransactionProduct];