import React from 'react'; import { RefreshControl as RefreshControlRN, RefreshControlProps } from 'react-native'; import { useTheme } from '../../../theme'; type TRefreshControlProps = Pick; export const RefreshControl = ({ refreshing, onRefresh }: TRefreshControlProps): React.ReactElement => { const { colors } = useTheme(); return ; };