import { Comment as CommentType } from "../../interfaces/models/Comment";
declare function useUpdateComment(): ({ commentId, content }: {
    commentId: string;
    content: string;
}) => Promise<CommentType>;
export default useUpdateComment;
