export type KeyValue = {
    [key: string]: any;
};
export type KeyValueType<T> = {
    [key: string]: [any: T];
};
export type KeyValueTypeList<T> = {
    [key: string]: [any: T][];
};
