import type { CollectionGroupAttributes, LocalizedString, PopularDestinationAttributes, } from '@entities' import type { StrapiRelation } from '@types' export type LpInspirationAttributes = { cover_label: LocalizedString cover_photo_alt: LocalizedString cover_photo_url: string cover_subtitle: LocalizedString cover_title: LocalizedString description: LocalizedString how_to_get_there: LocalizedString meta_description: LocalizedString meta_title: LocalizedString name: LocalizedString published: boolean seo_featured_photo_description: LocalizedString seo_photo_url: string seo_section_title: LocalizedString slug_en: string slug_fr: string title: LocalizedString when_to_leave_text: LocalizedString collection_groups?: StrapiRelation popular_destinations?: StrapiRelation createdAt: string updatedAt: string } export type InspirationAttributes = { destination_id: number lp_inspiration?: StrapiRelation position: number title_en: string title_fr: string createdAt: string updatedAt: string }