import { EntityEidType, BasicInfoAtomType, TransformAtomType, VisibleAtomType, EntityOutlinerAtomType } from '../data-type';
/**
 * @interface EarthTilesEntityAtomType
 * @param {number} projectWorldIndex
 */
export interface EarthTilesEntityAtomType {
    projectWorldIndex: number;
}
/**
 * @interface EarthTilesType
 * @extends EntityEidType,Partial<BasicInfoAtomType>,Partial<TransformAtomType>,Partial<VisibleAtomType>,Partial<EarthTilesEntityAtomType>
 */
export interface EarthTilesType extends EntityEidType, Partial<BasicInfoAtomType>, Partial<TransformAtomType>, Partial<VisibleAtomType>, Partial<EarthTilesEntityAtomType>, Partial<EntityOutlinerAtomType> {
}
/**
 * @interface IGenerate
 * @param {Partial<EarthTilesEntityAtomType>} EarthTilesEntityAtom (optional)
 * @param {Partial<BasicInfoAtomType>} BasicInfoAtom (optional)
 * @param {Partial<TransformAtomType>} TransformAtom (optional)
 * @param {Partial<VisibleAtomType>} VisibleAtom (optional)
 */
export interface IGenerate {
    EarthTilesEntityAtom?: Partial<EarthTilesEntityAtomType>;
    BasicInfoAtom?: Partial<BasicInfoAtomType>;
    TransformAtom?: Partial<TransformAtomType>;
    VisibleAtom?: Partial<VisibleAtomType>;
    EntityOutlinerAtom?: Partial<EntityOutlinerAtomType>;
}
/**
 * @interface IAesTilesVisualAtom
 * @param {any} visualGroupToNodes
 * @param {Array<any>} hiddenLayers
 */
export interface IAesTilesVisualAtom {
    visualGroupToNodes: any;
    hiddenLayers: Array<any>;
}
