import * as React from 'react'; import * as PropTypes from 'prop-types'; import { PropsType } from 'rmc-pull-to-refresh/lib/PropsType'; export default class PullToRefresh extends React.Component { static defaultProps: { prefixCls: string; }; static contextTypes: { antLocale: PropTypes.Requireable; }; render(): JSX.Element; }