/** A very generic object. */
export type Index<T = any> = {
    [key: string]: T;
};
