import { z } from "zod"; type AnyZodObject = z.ZodObject; export type QueryShape = Record; type QuerySchemaOptions = { strict?: boolean; omit?: readonly string[]; }; export declare function describeQuerySchema(coreSchema: T, overrides?: QueryShape, options?: QuerySchemaOptions): T; export declare function createQueryShapeSchema(coreSchema: T, overrides?: QueryShape, options?: QuerySchemaOptions): AnyZodObject; export {};