import type { LpDestinationAttributes } from '../../../entities/index.ts'; import type { HttpClient, Locale } from '../../../services/index.ts'; import type { StrapiApiResponseOutput } from '../../types/index.ts'; export type LpDestinationInput = { slug: string; locale: Locale; }; declare const getLandingPageDestination: (http: HttpClient) => { query: (input: LpDestinationInput) => Promise>; }; export default getLandingPageDestination;