import { z } from "zod"; export declare function clampedInt(min: number, max: number): z.ZodPreprocess; export type MinifyMode = "none" | "standard" | "symbols"; export declare const relaxedPageNumberField: z.ZodDefault>>; export declare const contextLinesField: z.ZodOptional>; export declare const lineNumberField: z.ZodOptional>; export declare const offsetField: z.ZodPreprocess; export declare function createRelaxedBulkQuerySchema(querySchema: z.ZodTypeAny, options?: { maxQueries?: number; }): z.ZodObject<{ responseCharOffset: z.ZodOptional>; responseCharLength: z.ZodOptional>; responseSnapshot: z.ZodOptional; queries: z.ZodArray>>; }, z.core.$strict>;