export function multiplex<T, A, B, C>(
    a: IProc<T, A>,
    b: IProc<T, B>,
    c: IProc<T, C>
): Multiplex<T, [A, B, C]>;