import {ViewStyle} from 'react-native'; export type TitleProps = { type?: 'card' | 'section'; size?: 'small' | 'medium' | 'large'; title: string; icon?: string; description?: string; iconColor?: string; iconAlign?: 'top' | 'middle' | 'bottom'; showRightAction?: boolean; showTrailingAction?: boolean; badgeLabel?: string; buttonTitle?: string; buttonSize?: 'small' | 'large'; onPressRightAction?: () => void; onPressTrailingAction?: () => void; textOnly?: boolean; style?: ViewStyle; accessibilityLabel?: string; };