import { PackageJson } from 'type-fest'; import { LintIssue } from '../lint-issue'; import { RuleType } from '../types/rule-type'; import { Severity } from '../types/severity'; export declare const ruleType = RuleType.Standard; export declare const lint: (packageJsonData: PackageJson | any, severity: Severity) => LintIssue | null;