export default class RetrySwitcher extends React.Component { static propTypes: { resultIds: PropTypes.Validator<(string | null | undefined)[]>; retryIndex: PropTypes.Requireable; title: PropTypes.Requireable; onChange: PropTypes.Validator<(...args: any[]) => any>; }; constructor(props: any); constructor(props: any, context: any); render(): import("react/jsx-runtime").JSX.Element | null; } import React from 'react'; import PropTypes from 'prop-types';