/**
 * Generic type for pairing two instances together. This is not a
 * part of the TMF metamodel, and thus cannot be serialized
 * or persisted without special logic.
 */
export declare class Pair<T1, T2> {
    private first;
    private second;
    constructor(first: T1, second: T2);
    getFirst(): T1;
    getSecond(): T2;
}
//# sourceMappingURL=pair.d.ts.map