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 StreetAddressBase: core.serialization.ObjectSchema; export declare namespace StreetAddressBase { interface Raw { address1: string; address2?: string | null; city: string; state: State.Raw; zip_code: string; } }