import { StyleProp, ViewStyle } from 'react-native'; export type FadeProps = React.PropsWithChildren<{ isVisible: boolean; isAnimatedOnMount?: boolean; duration?: number; style?: StyleProp; onAnimationEnd?: () => void; }>; export declare const Fade: (props: FadeProps) => import("react/jsx-runtime").JSX.Element;