/// 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; accessibilityLabel: string; accessibilityHint?: string; }; declare const Image: ({ tw, svg, src, style, width, height, accessibilityLabel, accessibilityHint, }: Props) => JSX.Element; export default Image;