/** * ESLint rule for detecting forgotten exports (symbols referenced but not exported). * * @remarks * This rule detects when an exported API references a type or symbol that is not * exported from the entry point, mirroring API Extractor's ae-forgotten-export message. * * @internal */ import { ESLintUtils } from '@typescript-eslint/utils'; import type { ApiExtractorLogLevel } from '../types'; /** * Options for the forgotten-export rule. * @alpha */ export interface ForgottenExportRuleOptions { /** * Severity level for forgotten exports. * @defaultValue 'warning' */ severity?: ApiExtractorLogLevel; } export declare const forgottenExport: ESLintUtils.RuleModule<"forgottenExport", [ForgottenExportRuleOptions], unknown, ESLintUtils.RuleListener>; //# sourceMappingURL=forgotten-export.d.ts.map