/** * Analyze stage: run pattern detection and naive input classification. * * Wraps the existing pattern-detector and input-analyzer modules, * populating the pipeline context with their results. */ import type { PipelineContext } from '../types'; /** * Analyze pipeline stage: detect patterns and classify inputs. */ export declare function analyze(ctx: PipelineContext): Promise;