/** **Read only** Enumerates the possible status of a [timecard](entity:Timecard). */ export declare const TimecardStatus: { readonly Open: "OPEN"; readonly Closed: "CLOSED"; }; export type TimecardStatus = (typeof TimecardStatus)[keyof typeof TimecardStatus];