import { Component } from 'react';
export default class EditableInput extends Component<any, any> {
    inputRef: import("react").RefObject<HTMLInputElement>;
    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;
}
