import type { ParserSymbol } from '../models.js'; import { TokenKind } from '../token.js'; /** * This symbol will never generate serializable output. * * It's use case is to make sure that a sequence of tokens is not present. * * @param invalidKinds - The sequence of token kinds that should be considered as invalid * and throw an error when matched * * @returns The grammar symbol */ export declare function not(invalidKinds: TokenKind[]): ParserSymbol; //# sourceMappingURL=not.d.ts.map