import { z } from 'zod'; export declare function createPaginatedResponseSchema(itemSchema: ItemType): z.ZodObject<{ items: z.ZodArray; nextPagePath: z.ZodUnion<[z.ZodString, z.ZodNull]>; }, "strip", z.ZodTypeAny, { items: ItemType["_output"][]; nextPagePath: string | null; }, { items: ItemType["_input"][]; nextPagePath: string | null; }>;