import { ImageStyle, ImageSourcePropType } from 'react-native';
/**
 * For a source that is either SVG or bitmap, render the best way. SVGs in
 * react-native are a real pain, and expo and bare react-native projects differ
 * in how they handle require'ing SVG files.
 */
declare const UniversalImage: ({ source, style, }: {
    source: ImageSourcePropType;
    style?: ImageStyle | undefined;
}) => JSX.Element;
export default UniversalImage;
