import React from 'react'; import { type ViewStyle, type ImageStyle, type TextStyle } from 'react-native'; export type HeaderProps = { style?: ViewStyle; backButtonStyle?: ViewStyle; iconBackStyle?: ImageStyle; headerTextStyle?: TextStyle; headerText?: String; visibleHeaderLeft?: boolean; visibleHeaderRight?: boolean; HeaderLeft?: React.ReactNode | React.Component | Function; HeaderRight?: React.ReactNode | React.Component | Function; onPressLeftButton?: (() => void) | undefined; }; declare const _default: React.MemoExoticComponent<(props: HeaderProps) => React.JSX.Element>; export default _default; //# sourceMappingURL=HeaderScreen.d.ts.map