interface OnFocusPluginProps {
    onFocus?: (event: FocusEvent) => void;
}
declare const OnFocusPlugin: ({ onFocus }: OnFocusPluginProps) => any;
export default OnFocusPlugin;
