import { z } from 'zod'; export declare const addressSchema: z.ZodObject<{ type: z.ZodLiteral<"smAddress">; street: z.ZodNullable; city: z.ZodNullable; province: z.ZodNullable; country: z.ZodNullable; postalCode: z.ZodNullable; longitude: z.ZodNullable; latitude: z.ZodNullable; }, "strip", z.ZodTypeAny, { type: "smAddress"; street: string | null; city: string | null; province: string | null; country: string | null; postalCode: string | null; longitude: number | null; latitude: number | null; }, { type: "smAddress"; street: string | null; city: string | null; province: string | null; country: string | null; postalCode: string | null; longitude: number | null; latitude: number | null; }>; export declare const addressQuery: string; //# sourceMappingURL=address.d.ts.map