/** * Enumerates the `Shift` fields to sort on. * * 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 ShiftSortField: { readonly StartAt: "START_AT"; readonly EndAt: "END_AT"; readonly CreatedAt: "CREATED_AT"; readonly UpdatedAt: "UPDATED_AT"; }; export type ShiftSortField = (typeof ShiftSortField)[keyof typeof ShiftSortField];