import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { Country } from "./Country"; export declare const Address: core.serialization.ObjectSchema; export declare namespace Address { interface Raw { address_line_1?: (string | null | undefined) | null; address_line_2?: (string | null | undefined) | null; address_line_3?: (string | null | undefined) | null; locality?: (string | null | undefined) | null; sublocality?: (string | null | undefined) | null; sublocality_2?: (string | null | undefined) | null; sublocality_3?: (string | null | undefined) | null; administrative_district_level_1?: (string | null | undefined) | null; administrative_district_level_2?: (string | null | undefined) | null; administrative_district_level_3?: (string | null | undefined) | null; postal_code?: (string | null | undefined) | null; country?: Country.Raw | null; first_name?: (string | null | undefined) | null; last_name?: (string | null | undefined) | null; } }