import React from 'react'; import type { ComponentCommonProps, Video, Img, Theme } from '../../types/props.js'; type GraphicType = { imgUrl: Img; title: string; description?: string; textColor?: string; href?: string; video?: Video; mobileVideo?: Video; youtubeId?: string; isYouTube?: boolean; isShowIcon?: boolean; buttonText?: string; icon?: Img; theme?: Theme; backgroundImage?: { default?: Img; tablet?: Img; laptop?: Img; desktop?: Img; lgDesktop?: Img; }; extension?: { text: string; textDesc: string; textTitle: string; textPcImg: Img; textMobileImg: Img; }; }; export interface GraphicProps extends ComponentCommonProps, React.HTMLAttributes { data: { title?: string; items?: GraphicType[]; itemShape?: 'round' | 'square'; itemTheme?: Theme; }; } declare const _default: any; export default _default;