import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { LocationCountry } from "./LocationCountry"; import { LocationLocationType } from "./LocationLocationType"; import { RemoteData } from "./RemoteData"; export declare const Location: core.serialization.ObjectSchema; export declare namespace Location { interface Raw { id?: string | null; remote_id?: string | null; created_at?: string | null; modified_at?: string | null; name?: string | null; phone_number?: string | null; street_1?: string | null; street_2?: string | null; city?: string | null; state?: string | null; zip_code?: string | null; country?: LocationCountry.Raw | null; location_type?: LocationLocationType.Raw | null; remote_was_deleted?: boolean | null; field_mappings?: Record | null; remote_data?: RemoteData.Raw[] | null; } }