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