import type { ReactNode } from 'react'; import type { ImageSourcePropType, ImageResizeMode } from 'react-native'; export type CarouselImageProps = ImageSourcePropType & { height?: number | `${number}%`; width?: number | `${number}%`; resizeMode?: ImageResizeMode; }; export type CarouselData = { image?: CarouselImageProps | string; content?: ReactNode; heading?: string; body?: string; background: string; };