import type { AutomaticProposalComment } from '../../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../types/index.ts'; export type CreateAutomaticProposalCommentInput = { automaticProposalId: string; automaticProposalHouseId: string; automatic_proposal_comment: { client_comment: string; accepted: boolean; }; }; declare const createAutomaticProposalComment: (http: HttpClient) => { query: (input: CreateAutomaticProposalCommentInput) => Promise>; }; export default createAutomaticProposalComment;