import type * as CandidApi from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { State } from "./State"; export declare const StreetAddressOptionalBase: core.serialization.ObjectSchema; export declare namespace StreetAddressOptionalBase { interface Raw { address1?: string | null; address2?: string | null; city?: string | null; state?: State.Raw | null; zip_code?: string | null; } }