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