import React from 'react'; import type { Shape } from '../../types/props'; import type { Media, Img } from '../../types/props'; export interface AttractionItem { icon?: Img; title: string; description: string; } interface GraphicAttractionBlockProps extends React.HTMLAttributes { data: { shape?: Shape; sectionTitle?: string; imageUrlPc?: Media; imageUrlMob?: Media; imageTitle?: string; imageDescription?: string; attractionItems?: AttractionItem[]; }; } declare const _default: any; export default _default; export type { GraphicAttractionBlockProps };