import { AsyncHandler } from './AsyncHandler'; /** * A composite handler that will try to run all supporting handlers sequentially * and return the value of the last supported handler. * The `canHandle` check of this handler will always succeed. */ export declare class SequenceHandler extends AsyncHandler { protected readonly handlers: AsyncHandler[]; constructor(handlers: AsyncHandler[]); handle(input: TIn): Promise; }