import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { AppointmentSegment } from "./AppointmentSegment"; export declare const Availability: core.serialization.ObjectSchema; export declare namespace Availability { interface Raw { start_at?: (string | null | undefined) | null; location_id?: string | null; appointment_segments?: (AppointmentSegment.Raw[] | null | undefined) | null; } }