/** * Class used to enable instantiation of objects by class name */ export declare class InstantiationTools { /** * Use this object to register external classes like custom textures or material * to allow the loaders to instantiate them */ static RegisteredExternalClasses: { [key: string]: Object; }; /** * Tries to instantiate a new object from a given class name * @param className defines the class name to instantiate * @returns the new object or null if the system was not able to do the instantiation */ static Instantiate(className: string): any; }