import { z } from 'zod'; export declare const paginationResponseSchema: z.ZodObject<{ prev: z.ZodNullable; next: z.ZodNullable; }, z.core.$strip>; export type PaginationResponse = z.infer;