import type * as Vital from "../../api/index.js"; import * as core from "../../core/index.js"; import type * as serializers from "../index.js"; import { LngLat } from "./LngLat.js"; import { UsAddress } from "./UsAddress.js"; export declare const AppointmentLocation: core.serialization.ObjectSchema; export declare namespace AppointmentLocation { interface Raw { location: LngLat.Raw; distance?: number | null; address: UsAddress.Raw; code: string; name: string; iana_timezone?: string | null; } }