import { z } from 'zod'; export declare const backgroundInfoSchema: z.ZodObject<{ name: z.ZodString; version: z.ZodLiteral<2>; title: z.ZodRecord; subtitle: z.ZodRecord; author: z.ZodRecord; description: z.ZodRecord; thumbnail: z.ZodObject<{ type: z.ZodLiteral<"BackgroundThumbnail">; hash: z.ZodString; url: z.ZodString; }, "strip", z.ZodTypeAny, { type: "BackgroundThumbnail"; hash: string; url: string; }, { type: "BackgroundThumbnail"; hash: string; url: string; }>; data: z.ZodObject<{ type: z.ZodLiteral<"BackgroundData">; hash: z.ZodString; url: z.ZodString; }, "strip", z.ZodTypeAny, { type: "BackgroundData"; hash: string; url: string; }, { type: "BackgroundData"; hash: string; url: string; }>; image: z.ZodObject<{ type: z.ZodLiteral<"BackgroundImage">; hash: z.ZodString; url: z.ZodString; }, "strip", z.ZodTypeAny, { type: "BackgroundImage"; hash: string; url: string; }, { type: "BackgroundImage"; hash: string; url: string; }>; configuration: z.ZodObject<{ type: z.ZodLiteral<"BackgroundConfiguration">; hash: z.ZodString; url: z.ZodString; }, "strip", z.ZodTypeAny, { type: "BackgroundConfiguration"; hash: string; url: string; }, { type: "BackgroundConfiguration"; hash: string; url: string; }>; meta: z.ZodUnknown; }, "strip", z.ZodTypeAny, { name: string; description: Record; data: { type: "BackgroundData"; hash: string; url: string; }; title: Record; version: 2; subtitle: Record; author: Record; thumbnail: { type: "BackgroundThumbnail"; hash: string; url: string; }; configuration: { type: "BackgroundConfiguration"; hash: string; url: string; }; image: { type: "BackgroundImage"; hash: string; url: string; }; meta?: unknown; }, { name: string; description: Record; data: { type: "BackgroundData"; hash: string; url: string; }; title: Record; version: 2; subtitle: Record; author: Record; thumbnail: { type: "BackgroundThumbnail"; hash: string; url: string; }; configuration: { type: "BackgroundConfiguration"; hash: string; url: string; }; image: { type: "BackgroundImage"; hash: string; url: string; }; meta?: unknown; }>;