export declare const ORIGNIALLY_DOWNLOADED_TEXTURE_URL_ATTRIBUTE_NAME = "originalSourceUrl"; /** * Class representing relevant properties of a texture object in RAPI. * This class is used to extract and store texture properties from RAPI texture objects. * This WILL NOT fully represent a RAPI texture object, only the relevant properties for the tools are stored. * To apply this, use the applyToRapiTexture method, do not export this. */ export declare class TextureObject { id: number; materialId: string; image: string; mapping: string; mmHeight: number | undefined; mmWidth: number | undefined; tileable: boolean; sourceUrl: string | undefined; extension: string | undefined; private constructor(); static fromRapiTexture(obj: any): TextureObject; applyToRapiTexture(target: any): void; }