import React from 'react'; import { ImageProps as RNImageProps, StyleProp, ViewStyle } from 'react-native'; import { InlinePressableProps, RneFunctionComponent } from '../helpers'; export interface ImageProps extends RNImageProps, InlinePressableProps { Component?: typeof React.Component; ImageComponent?: typeof React.Component; PlaceholderContent?: React.ReactElement; containerStyle?: StyleProp; childrenContainerStyle?: StyleProp; placeholderStyle?: StyleProp; transition?: boolean; transitionDuration?: number; } export declare const Image: RneFunctionComponent;