UNPKG

react-navigation-stack

Version:
9 lines (8 loc) 335 B
import { Animated, TextProps, StyleProp, TextStyle } from 'react-native'; declare type Props = Omit<TextProps, 'style'> & { tintColor?: string; children?: string; style?: Animated.WithAnimatedValue<StyleProp<TextStyle>>; }; export default function HeaderTitle({ tintColor, style, ...rest }: Props): JSX.Element; export {};