declare type TokenType = 'path' | 'definitive' | 'dot'; export interface Token { type: TokenType; term: string; } /** * 路径表达式分词器 * @param source 原文字符串 */ export declare function lex(source: string): Token[]; export {};