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