import * as React from "react"; import Interactive, { State } from 'react-interactive'; class InteractiveDiv extends React.Component { private handleInteractiveStateChange(arg0: {prevState: State, nextState: State, event: React.SyntheticEvent}): void {} private handleClick(e: React.SyntheticEvent): void {} render() { return (This is an interactive and focusable div); } } export default InteractiveDiv;