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