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