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