export declare class Pair<X, Y> {
    readonly first: X;
    readonly second: Y;
    constructor(first: X, second: Y);
}
