/** * The types of events on a CashDrawerShift. * Each event type represents an employee action on the actual cash drawer * represented by a CashDrawerShift. */ export declare const CashDrawerEventType: { readonly NoSale: "NO_SALE"; readonly CashTenderPayment: "CASH_TENDER_PAYMENT"; readonly OtherTenderPayment: "OTHER_TENDER_PAYMENT"; readonly CashTenderCancelledPayment: "CASH_TENDER_CANCELLED_PAYMENT"; readonly OtherTenderCancelledPayment: "OTHER_TENDER_CANCELLED_PAYMENT"; readonly CashTenderRefund: "CASH_TENDER_REFUND"; readonly OtherTenderRefund: "OTHER_TENDER_REFUND"; readonly PaidIn: "PAID_IN"; readonly PaidOut: "PAID_OUT"; }; export type CashDrawerEventType = (typeof CashDrawerEventType)[keyof typeof CashDrawerEventType];