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