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