import * as react from 'react'; import { ActivityIndicatorProps, ImageProps, TextProps, ViewProps } from 'react-native'; export { useAnimatedColor, useAnimatedValue, useAnimatedValueXY } from 'react-native'; type ClassProps = { className?: string; }; declare function NativeView(props: ViewProps & ClassProps): react.ReactElement>; declare function NativeViewWithContext(props: ViewProps & ClassProps): react.ReactElement>; declare function NativeText(props: TextProps & ClassProps & { selectionColorClassName?: string; }): react.ReactElement>; declare function NativeImage(props: ImageProps & ClassProps & { tintColorClassName?: string; }): react.ReactElement>; declare function NativeActivityIndicator(props: ActivityIndicatorProps & ClassProps & { colorClassName?: string; }): react.ReactElement>; export { NativeActivityIndicator, NativeImage, NativeText, NativeView, NativeViewWithContext };