import type { MessageId, Option } from "../../types"; import type { TSESLint, TSESTree } from "@typescript-eslint/utils"; export type Context = Readonly>; type Program = (context: Context) => TSESLint.RuleFunction; export declare const program: Program; export {};