import type { IncludedServiceHouse, IncludedServiceHousePayload } from '../../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../types/index.ts'; export type ModifyIncludedServiceHouseInput = { houseId: string; includedServiceHouseId: string; payload: IncludedServiceHousePayload; }; declare const modifyIncludedServiceHouse: (http: HttpClient) => { query: (input: ModifyIncludedServiceHouseInput) => Promise>; }; export default modifyIncludedServiceHouse;