import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { AddressRequestAddressType } from "./AddressRequestAddressType"; import { AddressRequestCountry } from "./AddressRequestCountry"; export declare const AddressRequest: core.serialization.ObjectSchema; export declare namespace AddressRequest { interface Raw { street_1?: string | null; street_2?: string | null; city?: string | null; state?: string | null; postal_code?: string | null; country?: AddressRequestCountry.Raw | null; address_type?: AddressRequestAddressType.Raw | null; integration_params?: Record | null; linked_account_params?: Record | null; } }