import React from 'react'; interface Props { onPress: () => void; title: string; } export declare const HeaderButton: ({ onPress, title }: Props) => React.JSX.Element; export {};