import { Comment } from "../../interfaces/models/Comment";
declare function useGroupReplies({ commentId }: {
    commentId: string;
}): {
    replies: Comment[];
    newReplies: Comment[];
};
export default useGroupReplies;
