import type { Middleware, RuntimeContext } from './types'; export declare function composeMiddleware(params: { middleware: Middleware[]; execute(): Promise; input: TInput; context: RuntimeContext; }): Promise;