import type { Experience } from '../../../../../../entities/index.ts'; import { type HttpClient } from '../../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../../types/index.ts'; export type GetDestinationExperiencesInput = { destinationId: string; pagination?: { per: string; page: string; }; }; declare const getDestinationExperiences: (http: HttpClient) => { query: (input: GetDestinationExperiencesInput) => Promise>; }; export default getDestinationExperiences;