import { FC, ReactType, ReactNode } from 'react'; export interface TextWithImageProps { Image?: ReactType; ImageProps?: unknown; title: string; text?: ReactNode; imagePosition?: string; } declare const TextWithImage: FC; export default TextWithImage;