import {ViewStyle, TextStyle} from 'react-native'; import {SvgProps} from 'react-native-svg'; export interface IProps { showBackButton?: boolean; onDelete?: () => void; title?: string; onBack?: () => void; headerStyle?: ViewStyle; titleStyle?: TextStyle; backArrowStyle?: SvgProps; }