import { AttributeValue } from '@wetron/common/ir'; declare function attrChipLabel(value: AttributeValue): string; declare function formatAttr(value: AttributeValue): string; declare function formatAttrBrief(value: AttributeValue): string; /** True when the brief rendering hides something the expanded rendering would show. * A short array can still need expanding when one of its items is long - GGUF * chat templates and tokenizer arrays hit exactly that case. */ declare function attrNeedsExpand(value: AttributeValue): boolean; export { attrChipLabel, attrNeedsExpand, formatAttr, formatAttrBrief };