import type { HttpClient, IncludeType } from '../../../../services/index.ts'; import type { ApiError, Response } from '../../../types/index.ts'; export type HouseInput = { houseId: string | number; paginate?: { per: string; page: string; }; included?: IncludeType; privateToken?: string; }; declare const getHouseById: (http: HttpClient) => { query: (input: HouseInput) => Promise>; }; export default getHouseById;