import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { DateRange } from "./DateRange"; import { TimecardWorkdayMatcher } from "./TimecardWorkdayMatcher"; export declare const TimecardWorkday: core.serialization.ObjectSchema; export declare namespace TimecardWorkday { interface Raw { date_range?: DateRange.Raw | null; match_timecards_by?: TimecardWorkdayMatcher.Raw | null; default_timezone?: (string | null | undefined) | null; } }