export declare class Tuple<T, S> {
    _1: T;
    _2: S;
    static of<W, E>(_1: W, _2: E): Tuple<W, E>;
}
