interface OnBlurPluginProps {
    onBlur?: (event: FocusEvent) => void;
}
declare const OnBlurPlugin: ({ onBlur }: OnBlurPluginProps) => any;
export default OnBlurPlugin;
