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