import { Configuration } from '@essex/redux-dag-history'; import { ComponentView, HistoryType } from '../interfaces'; export interface ComponentConfiguration extends Configuration { initialViewState: { mainView?: ComponentView; historyType?: HistoryType; branchContainerExpanded?: boolean; }; } export declare type RawComponentConfiguration = { [P in keyof ComponentConfiguration]?: ComponentConfiguration[P]; };