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 CatalogAvailabilityPeriod: core.serialization.ObjectSchema; export declare namespace CatalogAvailabilityPeriod { interface Raw { start_local_time?: (string | null | undefined) | null; end_local_time?: (string | null | undefined) | null; day_of_week?: DayOfWeek.Raw | null; } }