import { ClassAttributes, ComponentProps, ComponentType } from 'react'; import { Image as NativeImage, ImageStyle as NativeImageStyle, StyleProp } from 'react-native'; import { WebViewStyle } from './View'; type NativeImageProps = ComponentProps & ClassAttributes; export interface WebImageStyle { opacity?: number; } export type ImageStyle = Omit & WebImageStyle & WebViewStyle; export type WebImageProps = { style?: StyleProp; /** @platform web */ tabIndex?: number; /** * Set whether the image can be dragged with native browser behavior. * @platform web */ draggable?: boolean; }; export type ImageProps = Omit & WebImageProps; declare const _default: ComponentType; export default _default; //# sourceMappingURL=Image.d.ts.map