import type { ParserSymbol } from '../models.js'; import { TokenKind } from '../token.js'; export interface TerminalOptions { length: number; serializable: boolean; } /** * Represents a token in a production rule * * @param expectedKind - The token kind that should match * @param options - Options to configure the behaviour * * @returns The grammar symbol */ export declare function terminal(expectedKind: TokenKind, options?: Partial): ParserSymbol; //# sourceMappingURL=terminal.d.ts.map