import { z } from 'zod'; export declare const LayoutSchema: z.ZodObject<{ tableCount: z.ZodOptional; imageCount: z.ZodOptional; }, "strip", z.ZodTypeAny, { tableCount?: number | undefined; imageCount?: number | undefined; }, { tableCount?: number | undefined; imageCount?: number | undefined; }>; export type Layout = z.infer;