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