import React from 'react'; import type { SvgProps } from 'react-native-svg'; import type { AccessibilityPropsType } from '../../../utils/accessibility-helper'; export interface MediumTriggerSelectProps extends AccessibilityPropsType { title: string; subtitle?: string; leadingIcon?: React.ReactElement; disabled?: boolean; onPress?: () => void; }