import { z } from 'zod'; export declare const bulkGeocodeSchema: z.ZodObject<{ confidenceThreshold: z.ZodOptional; buildingType: z.ZodOptional>; cutId: z.ZodOptional; limit: z.ZodOptional; }, "strip", z.ZodTypeAny, { limit?: number | undefined; cutId?: string | undefined; buildingType?: "SINGLE_FAMILY" | "MULTI_UNIT" | "MIXED_USE" | "COMMERCIAL" | undefined; confidenceThreshold?: number | undefined; }, { limit?: number | undefined; cutId?: string | undefined; buildingType?: "SINGLE_FAMILY" | "MULTI_UNIT" | "MIXED_USE" | "COMMERCIAL" | undefined; confidenceThreshold?: number | undefined; }>; export type BulkGeocodeInput = z.infer; //# sourceMappingURL=bulk-geocode.schemas.d.ts.map