import { z } from "zod"; type AnyZodObject = z.ZodObject; export declare function getSchemaField(shape: z.ZodRawShape, name: string): z.ZodTypeAny; export declare function getRequiredSchemaField(shape: z.ZodRawShape, name: string): z.ZodTypeAny; /** * Keep the public bulk root an object while making selector modes visible to * JSON Schema consumers through a union at `queries.items`. */ export declare function createContentSelectorQuerySchema(base: AnyZodObject): z.ZodTypeAny; export {};