import { Reaction, ReactionType } from "../../interfaces/models/Reaction"; import { PaginatedResponse } from "../../interfaces/PaginatedResponse"; import { SpaceReputationContextParams } from "../../interfaces/SpaceReputation"; export interface FetchCommentReactionsProps extends SpaceReputationContextParams { commentId: string; page: number; limit?: number; reactionType?: ReactionType; sortDir?: "asc" | "desc"; } declare function useFetchCommentReactions(): (props: FetchCommentReactionsProps) => Promise>; export default useFetchCommentReactions;