import React from 'react'; import { ImageSourcePropType } from 'react-native'; import { imageCardTheme } from '../../types'; type Props = { source: ImageSourcePropType; loadTime?: number; text?: string; theme?: imageCardTheme; }; export declare const CardImage: ({ source, loadTime, text, theme }: Props) => React.JSX.Element; export {};