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