просто импортируйте эти типы реквизитов из lib
import { RouteComponentProps, withRouter } from 'react-router-dom';
чем вы должны сказать, что ваш компонент имеет эти реквизиты
type ownProps = {}
export const SomeComponent: React.FunctionComponent<ownProps & RouteComponentProps> = (props: ownProps & RouteComponentProps) => {
const history = props.history;
const match = props.match;
// ect... all in props
return (
<div>
some component that uses the router props match, location and history
</div>
);
};
export default withRouter(SomeComponent);