import { z } from 'zod'; /** * Complete Tile entity schema as published in events. */ export declare const TileEventDataSchema: z.ZodObject<{ documentId: z.ZodString; tileKey: z.ZodString; pmTileKey: z.ZodOptional; mbTileKey: z.ZodOptional; imageInfo: z.ZodObject<{ width: z.ZodNumber; height: z.ZodNumber; tileSize: z.ZodNumber; maxZoom: z.ZodNumber; minZoom: z.ZodNumber; }, z.core.$strip>; createdAt: z.ZodISODateTime; updatedAt: z.ZodISODateTime; }, z.core.$strip>; export type TileEventDataInput = z.input; export type TileEventDataModel = z.infer; //# sourceMappingURL=tile-event-data.schema.d.ts.map