export declare class Pair<firstT, secondT> {
    first: firstT;
    second: secondT;
    constructor(first: firstT, second: secondT);
}
//# sourceMappingURL=pair.d.ts.map
