interface CursorPage { items: T[]; pageInfo: { hasMore: boolean; nextCursor: string | null; }; } /** * Traverses every page for interactive selectors that need the full set. * * @param getPage - Loads one page from its optional preceding cursor. */ export declare function collectCursorPages(getPage: (cursor: string | undefined) => Promise>): Promise; export {}; //# sourceMappingURL=pagination.d.ts.map