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