react-navigation-stack
Version:
Stack navigator component for React Navigation
9 lines (8 loc) • 335 B
TypeScript
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 {};