declare const rules: { readonly 'import/consistent-type-specifier-style': "error"; readonly 'import/default': "error"; readonly 'import/dynamic-import-chunkname': "off"; readonly 'import/enforce-node-protocol-usage': ["error", "always"]; readonly 'import/export': "error"; readonly 'import/exports-last': "error"; readonly 'import/extensions': ["error", "ignorePackages", { readonly cts: "never"; readonly jsx: "never"; readonly mts: "never"; readonly ts: "never"; readonly tsx: "never"; }]; readonly 'import/first': "error"; readonly 'import/group-exports': "error"; readonly 'import/max-dependencies': "error"; readonly 'import/named': "error"; readonly 'import/namespace': "error"; readonly 'import/newline-after-import': "error"; readonly 'import/no-absolute-path': "error"; readonly 'import/no-amd': "error"; readonly 'import/no-anonymous-default-export': "error"; readonly 'import/no-commonjs': "error"; readonly 'import/no-cycle': "error"; readonly 'import/no-default-export': "off"; readonly 'import/no-deprecated': "error"; readonly 'import/no-duplicates': "off"; readonly 'import/no-dynamic-require': "error"; readonly 'import/no-empty-named-blocks': "error"; readonly 'import/no-extraneous-dependencies': "off"; readonly 'import/no-import-module-exports': "error"; readonly 'import/no-internal-modules': "off"; readonly 'import/no-mutable-exports': "error"; readonly 'import/no-named-as-default': "error"; readonly 'import/no-named-as-default-member': "error"; readonly 'import/no-named-default': "error"; readonly 'import/no-named-export': "off"; readonly 'import/no-namespace': "error"; readonly 'import/no-nodejs-modules': "off"; readonly 'import/no-relative-packages': "error"; readonly 'import/no-relative-parent-imports': "off"; readonly 'import/no-restricted-paths': "off"; readonly 'import/no-self-import': "error"; readonly 'import/no-unassigned-import': "error"; readonly 'import/no-unresolved': "error"; readonly 'import/no-unused-modules': "error"; readonly 'import/no-useless-path-segments': "error"; readonly 'import/no-webpack-loader-syntax': "error"; readonly 'import/order': "off"; readonly 'import/prefer-default-export': "error"; readonly 'import/unambiguous': "error"; }; export default rules;