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