export interface KeyValue<V = any> {
    [key: string]: V;
}
