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