import { BaseTexture } from '@babylonjs/core'; export interface TextureInterface { name: string; texture: BaseTexture; url: string; } export declare class Texture implements TextureInterface { name: string; texture: BaseTexture; url: string; constructor(texture: BaseTexture); }