export interface IKeyValuePair<T, U> {
    key: T;
    value: U;
}
