declare function startsWithDisableFileComment(content: string): boolean;
declare function extractGlobalDisableRules(content: string): Set<string>;
declare function extractDisableLineRules(content: string): Map<number, Set<string>>;
export { startsWithDisableFileComment, extractGlobalDisableRules, extractDisableLineRules };
