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