import type { HousePlace } from '../../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../types/index.ts'; export type RemoveHousePlaceInput = { placeId: string; houseId: string; }; declare const removeHousePlace: (http: HttpClient) => { query: (input: RemoveHousePlaceInput) => Promise>; }; export default removeHousePlace;