import { z } from 'zod'; export type Cursor = string | null; export type SeekPage = { next: Cursor; previous: Cursor; data: T[]; }; export declare const SeekPage: (t: z.ZodType) => z.ZodType; //# sourceMappingURL=seek-page.d.ts.map