/** Indicates the Square product used to generate a change. */ export declare const Product: { readonly SquarePos: "SQUARE_POS"; readonly ExternalApi: "EXTERNAL_API"; readonly Billing: "BILLING"; readonly Appointments: "APPOINTMENTS"; readonly Invoices: "INVOICES"; readonly OnlineStore: "ONLINE_STORE"; readonly Payroll: "PAYROLL"; readonly Dashboard: "DASHBOARD"; readonly ItemLibraryImport: "ITEM_LIBRARY_IMPORT"; readonly Other: "OTHER"; }; export type Product = (typeof Product)[keyof typeof Product];