export interface ChainHandler { setNext(handler: ChainHandler): ChainHandler; handle(builder: T): Promise; }