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