import * as React from 'react';
import { MiddlewareProps } from '../core';
export declare class ChangeToBlur2Mw extends React.Component<MiddlewareProps> {
    state: {
        value: unknown;
    };
    element: Element | null | Text;
    focus: boolean;
    onFocus: () => void;
    onBlur: () => void;
    componentDidMount(): void;
    componentWillUnmount(): void;
    render(): React.ReactElement<any, string | ((props: any) => React.ReactElement<any, string | any | (new (props: any) => React.Component<any, any, any>)> | null) | (new (props: any) => React.Component<any, any, any>)> | null;
}
export default ChangeToBlur2Mw;
