export declare class KeyValuePair { private key; private value; constructor(key: TKey, value: TValue); get Key(): TKey; get Value(): TValue; }