import { Comment as CommentType } from "../../interfaces/models/Comment";
import { CommentsSortByOptions } from "../../interfaces/CommentsSortByOptions";
declare function useReplies({ commentId, sortBy, }: {
    commentId: string;
    sortBy: CommentsSortByOptions;
}): {
    replies: CommentType[];
    newReplies: CommentType[];
    loading: boolean;
    page: number;
    setPage: import("react").Dispatch<import("react").SetStateAction<number>>;
};
export default useReplies;
