import { Component, ReactElement } from 'react'; import { ViewStyle, TextStyle } from 'react-native'; export interface NavigationBarProps { testID?: string; style?: ViewStyle; proportion?: number[]; titleContainer?: ReactElement; title?: string; titleStyle?: TextStyle; backLabel?: ReactElement; backLabelIcon?: ReactElement; backLabelText?: string; backLabelTextStyle?: TextStyle; onPressBack?: Function; forwardLabel?: ReactElement; forwardLabelText?: string; forwardLabelTextStyle?: TextStyle; onPressForward?: Function; renderItem?: Function; } export declare class NavigationBar extends Component { static defaultProps: { style: {}; proportion: number[]; title: string; titleStyle: {}; backLabelText: string; onPressBack: any; forwardLabelText: any; onPressForward: any; renderItem: any; }; constructor(props: NavigationBarProps); renderItem(index: any): JSX.Element; render(): JSX.Element; }