diff --git a/react-native/react-native.d.ts b/react-native/react-native.d.ts index f215fd3c8b..4cc5d47449 100644 --- a/react-native/react-native.d.ts +++ b/react-native/react-native.d.ts @@ -7502,11 +7502,16 @@ declare namespace __React { export interface NavigationHeaderProps { renderTitleComponent?(props: Object): JSX.Element + renderLeftComponent?(props: Object): JSX.Element + renderRightComponent?(props: Object): JSX.Element onNavigateBack(): void + style?: ViewStyle + viewProps?: any + statusBarHeight?: number | NavigationAnimatedValue } export interface NavigationHeaderStatic extends React.ComponentClass { - Title: JSX.Element + Title: () => JSX.ElementClass HEIGHT: number }