declare function useDeleteComment(): ({ commentId }: {
    commentId: string;
}) => Promise<void>;
export default useDeleteComment;
