import { z } from 'zod'; export declare const updateMapSettingsSchema: z.ZodObject<{ latitude: z.ZodOptional; longitude: z.ZodOptional; zoom: z.ZodOptional; walkSheetTitle: z.ZodOptional>; walkSheetSubtitle: z.ZodOptional>; walkSheetFooter: z.ZodOptional>; qrCode1Url: z.ZodUnion<[z.ZodOptional>, z.ZodLiteral<"">]>; qrCode1Label: z.ZodOptional>; qrCode2Url: z.ZodUnion<[z.ZodOptional>, z.ZodLiteral<"">]>; qrCode2Label: z.ZodOptional>; qrCode3Url: z.ZodUnion<[z.ZodOptional>, z.ZodLiteral<"">]>; qrCode3Label: z.ZodOptional>; }, "strip", z.ZodTypeAny, { latitude?: number | undefined; longitude?: number | undefined; zoom?: number | undefined; walkSheetTitle?: string | null | undefined; walkSheetSubtitle?: string | null | undefined; walkSheetFooter?: string | null | undefined; qrCode1Url?: string | null | undefined; qrCode1Label?: string | null | undefined; qrCode2Url?: string | null | undefined; qrCode2Label?: string | null | undefined; qrCode3Url?: string | null | undefined; qrCode3Label?: string | null | undefined; }, { latitude?: number | undefined; longitude?: number | undefined; zoom?: number | undefined; walkSheetTitle?: string | null | undefined; walkSheetSubtitle?: string | null | undefined; walkSheetFooter?: string | null | undefined; qrCode1Url?: string | null | undefined; qrCode1Label?: string | null | undefined; qrCode2Url?: string | null | undefined; qrCode2Label?: string | null | undefined; qrCode3Url?: string | null | undefined; qrCode3Label?: string | null | undefined; }>; export type UpdateMapSettingsInput = z.infer; //# sourceMappingURL=settings.schemas.d.ts.map