import type { Comment } from '../../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../types/index.ts'; export type DeleteCommentInput = { contractId: string; commentId: string; }; declare const deleteComment: (http: HttpClient) => { query: (input: DeleteCommentInput) => Promise>; }; export default deleteComment;