export interface IKeyValuePair<Value = string, Key = string> {
    key: Key;
    value: Value;
}
