export default reactHooks;
declare namespace reactHooks {
    let plugins: {
        'react-hooks': typeof reactHooksPlugin;
    };
    namespace languageOptions {
        namespace parserOptions {
            namespace ecmaFeatures {
                let jsx: boolean;
            }
        }
    }
    let rules: {
        'react-hooks/rules-of-hooks': string;
        'react-hooks/exhaustive-deps': string;
    };
}
import reactHooksPlugin from 'eslint-plugin-react-hooks';
