import { z } from "zod"; import type { ILintCheck } from "../LintRule.js"; import type { IPackage } from "../../../package/package.js"; interface IMaintainerCheck { authors: string[]; } export declare class MaintainerCheck implements ILintCheck { #private; name: string; check(pkg: IPackage, { authors }: IMaintainerCheck): string[]; checkParams(): z.ZodObject<{ authors: z.ZodArray; }, "strip", z.ZodTypeAny, { authors: string[]; }, { authors: string[]; }>; } export {};