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