import { Reaction, ReactionType } from "../../interfaces/models/Reaction";
export interface UseFetchCommentReactionsWrapperProps {
    commentId: string;
    limit?: number;
    reactionType?: ReactionType;
    sortDir?: "asc" | "desc";
    autoFetch?: boolean;
}
export interface UseFetchCommentReactionsWrapperValues {
    reactions: Reaction[];
    loading: boolean;
    hasMore: boolean;
    loadMore: () => void;
    refetch: () => void;
}
declare function useFetchCommentReactionsWrapper(props: UseFetchCommentReactionsWrapperProps): UseFetchCommentReactionsWrapperValues;
export default useFetchCommentReactionsWrapper;
