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