UNPKG

335 BTypeScriptView Raw
1import { Animated, TextProps, StyleProp, TextStyle } from 'react-native';
2declare type Props = Omit<TextProps, 'style'> & {
3 tintColor?: string;
4 children?: string;
5 style?: Animated.WithAnimatedValue<StyleProp<TextStyle>>;
6};
7export default function HeaderTitle({ tintColor, style, ...rest }: Props): JSX.Element;
8export {};