import type { Destination } from '../../../../../entities/index.ts'; import type { FilterType, HttpClient, IncludeType } from '../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../types/index.ts'; export type GetDestinationByIdInput = { destinationId: string; include?: IncludeType; filter?: FilterType; pagination?: { per: string; page: string; }; }; declare const getDestination: (http: HttpClient) => { query: (input: GetDestinationByIdInput) => Promise>; }; export default getDestination;