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