/** * Pipeline symbol catalog rows: [kind, label, category]. * * To add a symbol: * 1. Append a row here * 2. Map kind → family in familyMap.ts * 3. Ensure a drawer exists for that family (pipelineIcons.ts / future drawers/*) * 4. Optional: add aliases in aliases.ts */ import type { PipelineCatalogRow } from './types'; export declare const PIPELINE_CATALOG: PipelineCatalogRow[];