import { FC, ReactType, ReactNode } from 'react'; export interface CarouselTextImageProps { Image?: ReactType; ImageProps?: { title?: string; description?: string; svg?: { absolutePath?: string; content?: string; dataURI?: string; originalContent?: string; relativePath?: string; }; file?: { contentType?: string; url?: string; fileName?: string; details?: { image?: { width?: string; height?: string; }; }; }; fluid?: unknown; }; title: string; text?: ReactNode; imagePosition?: string; contentAlignment?: string; isSvgImage?: boolean; } declare const CarouselTextImage: FC; export default CarouselTextImage;