import type { House } from '../../../../../entities/index.ts'; import type { FilterType, HttpClient, IncludeType } from '../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../types/index.ts'; export type GetHousesInput = { houseIds: string[]; include?: IncludeType; filter?: FilterType; pagination?: { per: string; page: string; }; params?: { [key: string]: string; }; }; declare const getHouses: (http: HttpClient) => { query: (input: GetHousesInput) => Promise>; }; export default getHouses;