import type React from 'react'; import type { AccessibilityPropsType } from '@utils/accessibility-helper'; import type { ColorType } from '../../styles/Styles'; export interface PopMenusItem { id: string | number; title: string; subtitle?: string; leadingIcon?: React.ReactNode; disabled?: boolean; selected?: boolean; } export interface PopMenusProps extends AccessibilityPropsType { accessible?: boolean; colorType?: ColorType; data: PopMenusItem[]; onDismiss?: () => void; onShow?: () => void; onSelect?: (item: PopMenusItem) => void; } export interface PopMenusRef { showFrom: (triggerRef: any) => void; }