import React from 'react'; import type { AccessibilityPropsType } from '../../../utils/accessibility-helper'; export interface PullRefreshProps extends AccessibilityPropsType { refreshing: boolean; onRefresh: () => void; children: React.ReactNode; pullThreshold?: number; message?: string; disabled?: boolean; }