import type { ParserSymbol } from '../models.js'; import { TokenKind } from '../token.js'; export interface OmitOptions { kinds: TokenKind[]; canEscape?: boolean; } /** * Accepts any token except the sequences provided as arguments. * An invalid sequence can be escaped to be considered as valid. * * @param omittedSequences - The sequences that should be considered invalid when found * * @returns The grammar symbol */ export declare function omit(omittedSequences: OmitOptions[]): ParserSymbol; //# sourceMappingURL=omit.d.ts.map