import { EntityEidType, BasicInfoAtomType } from '../data-type';
export interface WdpSceneOutlinerAtomType {
    eids: {
        [key: string]: {
            eids: Array<string>;
        };
    };
}
export interface SceneOutlinerType extends EntityEidType, Partial<BasicInfoAtomType> {
    entities?: {
        [key: string]: Array<Record<string, any>>;
    };
}
