import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AddressSuggestion = { addressLine1?: string | undefined; addressLine2?: string | undefined; city?: string | undefined; /** * The number of units at an address. For example the number of apartments or businesses in a building. */ entries?: number | undefined; postalCode?: string | undefined; stateOrProvince?: string | undefined; }; /** @internal */ export declare const AddressSuggestion$inboundSchema: z.ZodType; /** @internal */ export type AddressSuggestion$Outbound = { addressLine1?: string | undefined; addressLine2?: string | undefined; city?: string | undefined; entries?: number | undefined; postalCode?: string | undefined; stateOrProvince?: string | undefined; }; /** @internal */ export declare const AddressSuggestion$outboundSchema: z.ZodType; export declare function addressSuggestionToJSON(addressSuggestion: AddressSuggestion): string; export declare function addressSuggestionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=addresssuggestion.d.ts.map