/** * Diagram builder — pipeline. */ import type { App } from '../../App'; import type { Group } from '../../shapes/Group'; import type { NodeOptions } from '../../types'; import { type PipelineSymbolCategory } from '../pipelineIcons'; import type { PipelineStage } from '../types'; /** Create horizontal process pipeline */ export declare function createPipeline(app: App, stages: PipelineStage[], options?: NodeOptions): Group; /** Grid catalog of pipeline / process / manufacturing symbols. */ export declare function createPipelineSymbolCatalog(app: App, options?: NodeOptions & { category?: PipelineSymbolCategory | string; columns?: number; }): Group;