import { JSX } from 'react';
import { StyleProp, TextStyle, ViewStyle } from 'react-native';
export declare const NotificationHeader: (props: {
    containerStyle?: StyleProp<ViewStyle>;
    headerText: string;
    headerChild: JSX.Element;
    onPressBack: () => void;
    showOther: boolean;
    headerOther?: JSX.Element;
}) => import("react/jsx-runtime").JSX.Element;
declare const Header: (props: {
    textStyle?: StyleProp<TextStyle>;
    containerStyle?: StyleProp<ViewStyle>;
    headerText: string;
    headerChild: JSX.Element;
    onPressBack: () => void;
}) => import("react/jsx-runtime").JSX.Element;
export default Header;
