declare const RULES_IMPORT_CORRECTNESS: { readonly "import/default": "error"; readonly "import/namespace": "error"; }; declare const RULES_IMPORT_NURSERY: { readonly "import/export": "error"; readonly "import/named": "error"; }; declare const RULES_IMPORT_RESTRICTION: { readonly "import/extensions": ["error", "always", { readonly js: "never"; readonly ts: "never"; readonly mjs: "never"; readonly mts: "never"; readonly cjs: "never"; readonly cts: "never"; readonly jsx: "never"; readonly tsx: "never"; readonly checkTypeImports: true; readonly ignorePackages: true; }]; readonly "import/no-cycle": "error"; }; declare const RULES_IMPORT_STYLE: { readonly "import/consistent-type-specifier-style": ["error", "prefer-top-level"]; readonly "import/first": "error"; readonly "import/newline-after-import": ["error", { readonly considerComments: true; readonly count: 1; readonly exactCount: true; }]; readonly "import/no-duplicates": ["error", { readonly considerQueryString: true; readonly preferInline: false; }]; readonly "import/no-mutable-exports": "error"; }; declare const RULES_IMPORT_SUSPICIOUS: { readonly "import/no-empty-named-blocks": "error"; readonly "import/no-named-as-default": "error"; readonly "import/no-self-import": "error"; }; declare const RULES_IMPORT: { readonly "import/no-empty-named-blocks": "error"; readonly "import/no-named-as-default": "error"; readonly "import/no-self-import": "error"; readonly "import/consistent-type-specifier-style": ["error", "prefer-top-level"]; readonly "import/first": "error"; readonly "import/newline-after-import": ["error", { readonly considerComments: true; readonly count: 1; readonly exactCount: true; }]; readonly "import/no-duplicates": ["error", { readonly considerQueryString: true; readonly preferInline: false; }]; readonly "import/no-mutable-exports": "error"; readonly "import/extensions": ["error", "always", { readonly js: "never"; readonly ts: "never"; readonly mjs: "never"; readonly mts: "never"; readonly cjs: "never"; readonly cts: "never"; readonly jsx: "never"; readonly tsx: "never"; readonly checkTypeImports: true; readonly ignorePackages: true; }]; readonly "import/no-cycle": "error"; readonly "import/export": "error"; readonly "import/named": "error"; readonly "import/default": "error"; readonly "import/namespace": "error"; }; export { RULES_IMPORT, RULES_IMPORT_CORRECTNESS, RULES_IMPORT_NURSERY, RULES_IMPORT_RESTRICTION, RULES_IMPORT_STYLE, RULES_IMPORT_SUSPICIOUS }; //# sourceMappingURL=import.d.ts.map