import type { TokenTree } from '../parser/types.js'; import type { Problem } from '../types/index.js'; export interface DirectiveMap { fileDisabled: boolean; isSuppressed(ruleName: string, line: number): boolean; warnings: Problem[]; } export declare function parseDirectives(tree: TokenTree, file: string, knownRuleNames: Set): DirectiveMap; //# sourceMappingURL=directives.d.ts.map