import { EntityEidType, VisibleAtomType, BasicInfoAtomType, TransformAtomType, CoordType, RotatorType, ScaleType } from '../data-type';
export interface GroupType extends EntityEidType, Partial<BasicInfoAtomType>, Partial<TransformAtomType>, Partial<VisibleAtomType> {
    children?: Array<any>;
}
export interface EntityChildrenAtomType {
    childrenEids: Array<string>;
}
export interface WdpGroupTransformAtomType {
    location: CoordType;
    rotator: RotatorType;
    scale3d: ScaleType;
}
