import type { IParser } from './rule'; interface IId { /** * Check if the token has a specific value and return that value. */ (value: string): IParser; /** * Check if the token has a specific value and return the second argument */ (value: string, returnValue: T): IParser; } export declare const id: IId; export {}; //# sourceMappingURL=id.d.ts.map