import type { ESLintRuleSeverity } from 'tslint-to-eslint-config';
export declare function convertTslintNxRuleToEslintNxRule(tslintJson: Record<string, unknown>): {
    ruleName: string;
    ruleConfig: [ESLintRuleSeverity, Record<string, unknown>];
} | null;
