/** Defines the logic used to apply a workday filter. */ export declare const ShiftWorkdayMatcher: { readonly StartAt: "START_AT"; readonly EndAt: "END_AT"; readonly Intersection: "INTERSECTION"; }; export type ShiftWorkdayMatcher = (typeof ShiftWorkdayMatcher)[keyof typeof ShiftWorkdayMatcher];