import { ReactElement } from 'react'; import { ViewStyle, TextStyle } from 'react-native'; import { HeaderPlacement } from '../../types'; export interface HeaderProps { placement?: HeaderPlacement; title?: string; titleStyle?: TextStyle; containerStyle?: ViewStyle; leftComponent?: ReactElement; leftContainerStyle?: ViewStyle; centerComponent?: ReactElement; centerContainerStyle?: ViewStyle; rightComponent?: ReactElement; rightContainerStyle?: ViewStyle; sectionContainerStyle?: ViewStyle; } export default function Header({ placement, title, titleStyle, containerStyle, leftComponent, leftContainerStyle, centerComponent, centerContainerStyle, rightComponent, rightContainerStyle, sectionContainerStyle, }: HeaderProps): JSX.Element;