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