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