import { z } from 'zod'; declare const RadarConfigurationSchema: z.ZodObject<{ svg_id: z.ZodString; date: z.ZodString; width: z.ZodNumber; height: z.ZodNumber; scale: z.ZodNumber; colors: z.ZodObject<{ background: z.ZodString; grid: z.ZodString; inactive: z.ZodString; }, "strip", z.ZodTypeAny, { background: string; grid: string; inactive: string; }, { background: string; grid: string; inactive: string; }>; title: z.ZodString; quadrants: z.ZodArray, "many">; rings: z.ZodArray, "many">; print_layout: z.ZodBoolean; zoomed_quadrant: z.ZodOptional; links_in_new_tabs: z.ZodBoolean; entries: z.ZodArray; }, "strip", z.ZodTypeAny, { label: string; quadrant: number; ring: number; moved: number; active: boolean; link?: string | undefined; }, { label: string; quadrant: number; ring: number; moved: number; active: boolean; link?: string | undefined; }>, "many">; }, "strip", z.ZodTypeAny, { svg_id: string; date: string; width: number; height: number; scale: number; entries: { label: string; quadrant: number; ring: number; moved: number; active: boolean; link?: string | undefined; }[]; colors: { background: string; grid: string; inactive: string; }; title: string; quadrants: { name: string; }[]; rings: { name: string; color: string; }[]; print_layout: boolean; links_in_new_tabs: boolean; zoomed_quadrant?: number | undefined; }, { svg_id: string; date: string; width: number; height: number; scale: number; entries: { label: string; quadrant: number; ring: number; moved: number; active: boolean; link?: string | undefined; }[]; colors: { background: string; grid: string; inactive: string; }; title: string; quadrants: { name: string; }[]; rings: { name: string; color: string; }[]; print_layout: boolean; links_in_new_tabs: boolean; zoomed_quadrant?: number | undefined; }>; type RadarConfigurationType = z.infer; export { RadarConfigurationSchema, type RadarConfigurationType };