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