///
import { TagElement, TagStyle } from '@team-devmonster/react-tags';
import { StatusBarStyle } from './type';
export interface HeaderProps {
title?: string | TagElement;
headerLeft?: TagElement;
headerRight?: TagElement;
headerBackTitle?: string;
headerBackVisible?: boolean;
headerTitleAlign?: "left" | "center" | undefined;
headerTitleStyle?: Pick & {
color?: string | undefined;
};
headerShown?: boolean;
style?: TagStyle;
statusBarStyle?: StatusBarStyle;
containerStyle?: TagStyle;
contentStyle?: TagStyle;
children?: TagElement;
}
export declare const Header: import("react").ForwardRefExoticComponent>;