import React from 'react'; import type { ImageStyle, StyleProp, ViewStyle } from 'react-native'; import { ActivityIndicator, ImageProps } from 'react-native'; export interface AnimatedImageProps extends Omit { fadeInDuration?: number; imageStyle?: StyleProp; containerStyle?: StyleProp; activityIndicatorProps?: React.ComponentProps; customLoadingComponent?: React.ReactNode; missingImageStyle?: StyleProp; customMissingImageComponent?: React.ReactNode; } export declare const AnimatedImage: (props: AnimatedImageProps) => JSX.Element; //# sourceMappingURL=index.d.ts.map