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