import { z } from "zod"; export declare const geoCoordinateSchema: z.ZodObject<{ lat: z.ZodNumber; lon: z.ZodNumber; }, "strip", z.ZodTypeAny, { lat: number; lon: number; }, { lat: number; lon: number; }>; export declare const usStateForAddressSchema: z.ZodUnion<[z.ZodEffects, import("@metriport/shared").USState, unknown>, z.ZodEffects, import("@metriport/shared").USTerritory, unknown>]>; export declare const addressSchema: z.ZodObject<{ addressLine1: z.ZodString; addressLine2: z.ZodEffects]>, string | undefined, string | undefined>; city: z.ZodString; state: z.ZodUnion<[z.ZodEffects, import("@metriport/shared").USState, unknown>, z.ZodEffects, import("@metriport/shared").USTerritory, unknown>]>; zip: z.ZodEffects, string, string>, string, string>; coordinates: z.ZodOptional>; country: z.ZodDefault>>; }, "strip", z.ZodTypeAny, { addressLine1: string; city: string; state: import("@metriport/shared").USState | import("@metriport/shared").USTerritory; zip: string; country: "USA"; addressLine2?: string | undefined; coordinates?: { lat: number; lon: number; } | undefined; }, { addressLine1: string; city: string; zip: string; addressLine2?: string | undefined; state?: unknown; coordinates?: { lat: number; lon: number; } | undefined; country?: "USA" | undefined; }>; export type Address = z.infer; //# sourceMappingURL=address.d.ts.map