import type { HttpClient } from "../httpClient.js"; import type { CommentWithPost } from "../types/facebookpost.js"; import type { GetPageComments } from "../resources/comment/PageCommentResource.js"; import { type KeysToCamel } from "../lib/transformCase.js"; type GetPageCommentsParams = Parameters[0]; type FetchComments = (http: HttpClient, params: { postIds: string[]; query: GetPageCommentsParams; cursors: Record; }) => Promise<{ comments: KeysToCamel[]; nextCursors: Record; }>; export declare const fetchComments: FetchComments; export {}; //# sourceMappingURL=fetchers.d.ts.map