import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { DayOfWeek } from "./DayOfWeek"; export declare const BusinessHoursPeriod: core.serialization.ObjectSchema; export declare namespace BusinessHoursPeriod { interface Raw { day_of_week?: DayOfWeek.Raw | null; start_local_time?: (string | null | undefined) | null; end_local_time?: (string | null | undefined) | null; } }