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