import type { ChatListOptions, ChatScope } from "./types/chat.js"; export interface ChatPaginationResult { items: T[]; nextCursor?: string; } export declare function paginateChatRecords(items: T[], options: ChatListOptions, scope: ChatScope, threadId?: string): ChatPaginationResult;