import type { Rule } from "../types.js"; /** Returns the opening `` tags in an HTML-file source with no lang attr. */ declare function htmlTagsWithoutLang(source: string): string[]; declare function isAllowlisted(repoRoot: string): boolean; export declare const rule: Rule; export declare const _internal: { htmlTagsWithoutLang: typeof htmlTagsWithoutLang; isAllowlisted: typeof isAllowlisted; DISABLE_DIRECTIVE: string; }; export {};