import { TokenKind } from './token.js'; /** * The pattern associated with a token */ export interface TokenPattern { /** Whether the token supports multiple consecutive pattern matches */ multiple: boolean; /** The kind of token */ kind: TokenKind; } export declare const patterns: Record; //# sourceMappingURL=patterns.d.ts.map