import { EntityEidType, BasicInfoAtomType, TransformAtomType, VisibleAtomType, EntityOutlinerAtomType } from '../data-type';
/**
 * @interface EarthTilesEntityAtomType
 * @param {number} projectWorldIndex
 */
export interface EarthTilesEntityAtomType {
    projectWorldIndex: number;
}
export interface AssetAtomType {
    seedId: string;
}
/**
 * @interface EarthTilesType
 * @extends EntityEidType,Partial<AssetAtomType>,Partial<BasicInfoAtomType>,Partial<TransformAtomType>,Partial<VisibleAtomType>,Partial<EarthTilesEntityAtomType>
 */
export interface EarthTilesType extends EntityEidType, Partial<AssetAtomType>, Partial<BasicInfoAtomType>, Partial<TransformAtomType>, Partial<VisibleAtomType>, Partial<EarthTilesEntityAtomType>, Partial<EntityOutlinerAtomType> {
}
/**
 * @interface IGenerate
 * @param {Partial<AssetAtomType>} AssetAtom (optional)
 * @param {Partial<EarthTilesEntityAtomType>} AesEarthEntityAtom (optional)
 * @param {Partial<BasicInfoAtomType>} BasicInfoAtom (optional)
 * @param {Partial<TransformAtomType>} TransformAtom (optional)
 * @param {Partial<VisibleAtomType>} VisibleAtom (optional)
 */
export interface IGenerate {
    AssetAtom?: Partial<AssetAtomType>;
    AesEarthEntityAtom?: 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>;
}
