import { TreeType } from '@forten/tree-type'; export interface ComponentType { _id: string; _rev?: string; _deleted?: boolean; type: string; name: string; graph: TreeType; blockId?: string; scenes?: string[]; } export interface ComponentByIdType { [key: string]: ComponentType; }