import type * as Vital from "../../api/index.js"; import * as core from "../../core/index.js"; import type * as serializers from "../index.js"; import { AppointmentLocation } from "./AppointmentLocation.js"; import { TimeSlot } from "./TimeSlot.js"; export declare const DaySlots: core.serialization.ObjectSchema; export declare namespace DaySlots { interface Raw { location?: AppointmentLocation.Raw | null; date: string; slots: TimeSlot.Raw[]; } }