import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AddressDict = { line1?: string | undefined; line2?: string | undefined; postalCode?: string | undefined; city?: string | undefined; state?: string | undefined; country: string; }; /** @internal */ export declare const AddressDict$inboundSchema: z.ZodMiniType; export declare function addressDictFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=addressdict.d.ts.map