import { ViewStyle, TextStyle } from 'react-native'; import { LinearGradientProps } from 'react-native-linear-gradient'; export interface DbCustomHeaderProps { /** 标题 */ title: string; /** 返回按钮点击事件 */ onBackPress: () => void; /** 右侧自定义组件 */ rightComponent?: React.ReactNode; /** 样式变体 */ variant?: 'primary' | 'secondary' | 'outline'; /** 自定义线性渐变颜色 */ gradientColors?: string[]; /** 自定义图标颜色 */ iconColor?: string; /** 自定义标题颜色 */ titleColor?: string; /** 自定义线性渐变属性 */ gradientProps?: LinearGradientProps; /** 自定义容器样式 */ style?: ViewStyle; /** 自定义标题样式 */ textStyle?: TextStyle; } export type CustomHeaderProps = DbCustomHeaderProps;