import { n as Severity } from "./lint-issue.js";
import { t as LintResult } from "./lint-result.js";
import { PackageJson } from "type-fest";

//#region src/rules/valid-values-author.d.ts
declare const ruleType = RuleType.Array;
declare const minItems = 1;
declare const arrayType = "string";
declare const lint: <T>(packageJsonData: PackageJson | any, severity: Severity, validValues: T[]) => LintResult;
//#endregion
export { arrayType, lint, minItems, ruleType };
//# sourceMappingURL=valid-values-author.d.ts.map