import type { AddHousePayload, House } from '../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../types/index.ts'; declare const addHouse: (http: HttpClient) => { query: (input: AddHousePayload) => Promise>; }; export default addHouse;