import type { ICoordinatorContext, IDispatchStrategy, PlanStep, StepResult } from '@mcp-abap-adt/llm-agent'; /** * Try a primary dispatch strategy when the step names a known subagent; * otherwise fall back to a secondary (e.g. SelfDispatch). */ export declare class HybridDispatch implements IDispatchStrategy { private readonly primary; private readonly fallback; readonly name = "hybrid"; constructor(primary: IDispatchStrategy, fallback: IDispatchStrategy); dispatch(step: PlanStep, ctx: ICoordinatorContext): Promise; } //# sourceMappingURL=hybrid.d.ts.map