import type { RunContext } from '../../../types/run-context.js'; import type { ResolvedNode } from '../../../types/channel.js'; export type StreamMode = 'token' | 'sentence' | 'turn'; export declare function resolveStreamMode(ctx: RunContext, node: ResolvedNode): StreamMode;