/** The current state of a cash drawer shift. */ export declare const CashDrawerShiftState: { readonly Open: "OPEN"; readonly Ended: "ENDED"; readonly Closed: "CLOSED"; }; export type CashDrawerShiftState = (typeof CashDrawerShiftState)[keyof typeof CashDrawerShiftState];