import { type SyntaxLang } from './lexer.js'; /** * The shell (bash-family) language registration for the lexer engine. * * Registered as `sh`; `bash` and `shell` alias it: POSIX sh is a syntactic * subset of bash for highlighting purposes, and the bash-only constructs this * lexer additionally recognizes don't occur in sh input, so running it on sh * scripts is exact. There is no separate sh lexer. */ export declare const lexer_bash: SyntaxLang; //# sourceMappingURL=lexer_bash.d.ts.map