/** * Enumerates the possible status of a `Shift`. * * Deprecated at Square API version 2025-05-21. See the [migration notes](https://developer.squareup.com/docs/labor-api/what-it-does#migration-notes). */ export declare const ShiftStatus: { readonly Open: "OPEN"; readonly Closed: "CLOSED"; }; export type ShiftStatus = (typeof ShiftStatus)[keyof typeof ShiftStatus];