export type IndexedStrings = { [key: string]: string };
export type IndexedObjects = { [key: string]: object };
export type StringOrObject = object | string;
