/** * Simple connection chain. */ import { ClientConnection } from './ValueObject/ClientConnection'; export declare type ClientConnectionChain> = (next: (connection: T) => void) => (connection: T) => void; export declare function combineClientChain>(...chain: Array>): (_connection: T) => void;