import type { HttpClient } from '../../../services/index.ts'; declare const landingPageDestinationRepository: (http: HttpClient) => { getLandingPageDestination: (input: import("./getLandingPageDestination").LpDestinationInput) => Promise>; getLandingPageDestinationHouses: (input: { destinationId: number; }) => Promise>; getLandingPagePopularDestinations: (input: { destinationId: number; }) => Promise>; }; export default landingPageDestinationRepository;