///
import { ColorValue, StyleProp, ViewStyle } from 'react-native';
export declare function HeaderButton({ style, onPress, icon, color, disabled, title, }: {
disabled?: boolean;
style?: StyleProp;
onPress?: any;
icon?: string;
title?: string;
color?: ColorValue;
}): JSX.Element;