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