import React from 'react';
import type { InputBoxProps } from '../types';
interface InputBoxState {
    isFocused: boolean;
}
export default class InputBox extends React.Component<InputBoxProps, InputBoxState> {
    static defaultProps: {
        clearable: boolean;
        placeholder: string;
    };
    state: {
        isFocused: boolean;
    };
    clearValue(e: any): void;
    handleChange(e: React.ChangeEvent<HTMLInputElement>): void;
    handleFocus(e: any): void;
    handleBlur(e: any): void;
    render(): JSX.Element;
}
export {};
