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