import React from 'react'; import type { PropsWithChildren } from 'react'; import type { ViewStyle } from 'react-native'; declare type FadeInViewProps = PropsWithChildren<{ style: ViewStyle; }>; export declare const FadeInView: React.FC; export {};