import { z } from 'zod'; export declare const addressFormSchema: z.ZodObject<{ placeId: z.ZodOptional>; bus: z.ZodString; city: z.ZodString; coordinates: z.ZodObject<{ lat: z.ZodNullable; lng: z.ZodNullable; }, z.core.$strip>; country: z.ZodString; postalCode: z.ZodString; street: z.ZodString; streetNumber: z.ZodString; }, z.core.$strip>; export type AddressForm = z.infer;