/// import { ImageSourcePropType } from 'react-native'; import { Style } from 'twrnc/dist/esm/types'; import { TailwindFn } from 'twrnc'; declare type Props = { tw: TailwindFn; svg?: string; src?: ImageSourcePropType; style?: Style; width?: number; height?: number; }; declare const Image: ({ tw, svg, src, style, width, height }: Props) => JSX.Element; export default Image;