import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { Weekday } from "./Weekday"; export declare const WorkweekConfig: core.serialization.ObjectSchema; export declare namespace WorkweekConfig { interface Raw { id?: string | null; start_of_week: Weekday.Raw; start_of_day_local_time: string; version?: number | null; created_at?: string | null; updated_at?: string | null; } }