import type { FC } from 'react';
type OnBlurBlockPluginProps = {
    onBlur?: () => void;
    onFocus?: () => void;
};
export declare const OnBlurBlockPlugin: FC<OnBlurBlockPluginProps>;
export {};
