import type { TSESTree } from '@typescript-eslint/utils'; import type { InferMessageIdsTypeFromRule, InferOptionsTypeFromRule } from '../util'; declare const baseRule: import("@typescript-eslint/utils/ts-eslint").RuleModule<"unexpected" | "suggestComment", [{ allow?: string[]; }], unknown, { FunctionDeclaration(node: TSESTree.FunctionDeclaration): void; FunctionExpression(node: TSESTree.FunctionExpression): void; }>; export type Options = InferOptionsTypeFromRule; export type MessageIds = InferMessageIdsTypeFromRule; declare const _default: import("@typescript-eslint/utils/ts-eslint").RuleModule<"unexpected" | "suggestComment", [{ allow?: string[]; }], import("../../rules").ESLintPluginDocs, import("@typescript-eslint/utils/ts-eslint").RuleListener> & { name: string; }; export default _default;