interface ObjectConfiguration { content: ObjectConfigurationItem[]; } interface ObjectConfigurationItem { id: string; items: Item[]; } interface Item { key: string; value: string; } declare enum FormType { SUMMARY = "SUMMARY", EDITFORM = "EDITFORM" } declare enum ColumnType { DEFAULT = "DEFAULT", CUSTOM = "CUSTOM" } export { ObjectConfiguration, ObjectConfigurationItem, Item, FormType, ColumnType };