import { Comment } from "../../interfaces/models/Comment";
export interface UpdateCommentProps {
    commentId: string;
    content?: string;
    metadata?: Record<string, any>;
}
declare function useUpdateComment(): (props: UpdateCommentProps) => Promise<Comment>;
export default useUpdateComment;
