import type * as Vital from "../../api/index.js"; import * as core from "../../core/index.js"; import type * as serializers from "../index.js"; export declare const TimeSlot: core.serialization.ObjectSchema; export declare namespace TimeSlot { interface Raw { booking_key?: string | null; start: string; end: string; expires_at?: string | null; price: number; is_priority: boolean; num_appointments_available: number; } }