import { PureComponent } from 'react'; import type { ViewProps } from 'react-native'; import { Animated } from 'react-native'; import type { FadeInImageProps } from './FadeInImageProps'; export interface FadeInImageState { opacity: Animated.Value; } export declare class FadeInImage extends PureComponent { constructor(props: FadeInImageProps); private readonly view; /** * Invoked after the image finishes loading to animate the image from transparent to opaque. */ private readonly onLoad; protected setNativeProps: (props: ViewProps) => void; render(): JSX.Element; }