import { RuleChunk } from "@cranq/bipt-parser"; import { ChunkType } from "./ChunkType"; export interface IdentifierChunk extends RuleChunk { type: ChunkType.Identifier; captures: [string]; }