import { Component } from 'react'; export default class EditableInput extends Component { inputRef: import("react").RefObject; eventCancelList: (() => void)[]; constructor(props: any); componentDidUpdate(prevProps: any): void; componentWillUnmount(): void; handleBlur: (e: any) => void; handleChange: (e: any) => void; handleKeyDown: (e: any) => void; handleDrag: (e: any) => void; handleMouseDown: (e: any) => void; handleMouseUp: () => void; unbindEventListeners: () => void; render(): JSX.Element; }