import type { Rule } from 'eslint'; import { type LintRule } from '@atlaskit/eslint-utils/create-rule'; /** * Tiny wrapped over the ESLint rule module type that ensures * there is a docs link to our ESLint plugin documentation page, * as well as improving type support. */ export declare const createLintRule: (rule: LintRule) => Rule.RuleModule; export { getRuleUrl } from './get-rule-url';