import { Comment } from "../../interfaces/models/Comment";
declare function useFetchSingleComment(): ({ commentId, withParent, }: {
    commentId: string;
    withParent?: boolean;
}) => Promise<{
    comment: Comment;
    parentComment: Comment | null;
}>;
export default useFetchSingleComment;
