import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { AddressCountry } from "./AddressCountry"; import { AddressType } from "./AddressType"; export declare const Address: core.serialization.ObjectSchema; export declare namespace Address { interface Raw { created_at?: string | null; modified_at?: string | null; type?: AddressType.Raw | null; street_1?: string | null; street_2?: string | null; city?: string | null; state?: unknown | null; country_subdivision?: string | null; country?: AddressCountry.Raw | null; zip_code?: string | null; } }