import type { AreaGroup } from '../../../../../../entities/index.ts'; import type { FilterType, HttpClient } from '../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../types/index.ts'; type GetAreaGroupsInput = { houseId: string; included?: { filter?: FilterType; }; }; declare const getAreaGroups: (http: HttpClient) => { query: (input: GetAreaGroupsInput) => Promise>; }; export default getAreaGroups;