import React from 'react'; import type { RefreshControlProps as NativeRefreshControlProps } from 'react-native'; type RefreshControlProps = Omit; declare const RefreshControl: ({ ...props }: RefreshControlProps) => React.JSX.Element; export default RefreshControl;