import { Texture } from '../../thirdparty/three/imports'; export declare class Texture3D { /** * @private */ get _texture(): Texture; set _texture(v: Texture); /** * @private */ __texture: Texture; get image(): any; set image(v: any); get wrapS(): "RepeatWrapping" | "ClampToEdgeWrapping" | "MirroredRepeatWrapping"; set wrapS(v: "RepeatWrapping" | "ClampToEdgeWrapping" | "MirroredRepeatWrapping"); get wrapT(): "RepeatWrapping" | "ClampToEdgeWrapping" | "MirroredRepeatWrapping"; set wrapT(v: "RepeatWrapping" | "ClampToEdgeWrapping" | "MirroredRepeatWrapping"); get anisotropy(): number; set anisotropy(v: number); get minFilter(): "NearestFilter" | "NearestMipmapNearestFilter" | "NearestMipMapNearestFilter" | "NearestMipmapLinearFilter" | "NearestMipMapLinearFilter" | "LinearFilter" | "LinearMipmapNearestFilter" | "LinearMipMapNearestFilter" | "LinearMipmapLinearFilter" | "LinearMipMapLinearFilter"; set minFilter(v: "NearestFilter" | "NearestMipmapNearestFilter" | "NearestMipMapNearestFilter" | "NearestMipmapLinearFilter" | "NearestMipMapLinearFilter" | "LinearFilter" | "LinearMipmapNearestFilter" | "LinearMipMapNearestFilter" | "LinearMipmapLinearFilter" | "LinearMipMapLinearFilter"); get magFilter(): "NearestFilter" | "NearestMipmapNearestFilter" | "NearestMipMapNearestFilter" | "NearestMipmapLinearFilter" | "NearestMipMapLinearFilter" | "LinearFilter" | "LinearMipmapNearestFilter" | "LinearMipMapNearestFilter" | "LinearMipmapLinearFilter" | "LinearMipMapLinearFilter"; set magFilter(v: "NearestFilter" | "NearestMipmapNearestFilter" | "NearestMipMapNearestFilter" | "NearestMipmapLinearFilter" | "NearestMipMapLinearFilter" | "LinearFilter" | "LinearMipmapNearestFilter" | "LinearMipMapNearestFilter" | "LinearMipmapLinearFilter" | "LinearMipMapLinearFilter"); get format(): "AlphaFormat" | "RGBAFormat" | "LuminanceFormat" | "LuminanceAlphaFormat" | "DepthFormat" | "DepthStencilFormat" | "RedFormat" | "RedIntegerFormat" | "RGFormat" | "RGIntegerFormat" | "RGBAIntegerFormat"; set format(v: "AlphaFormat" | "RGBAFormat" | "LuminanceFormat" | "LuminanceAlphaFormat" | "DepthFormat" | "DepthStencilFormat" | "RedFormat" | "RedIntegerFormat" | "RGFormat" | "RGIntegerFormat" | "RGBAIntegerFormat"); get type(): "UnsignedByteType" | "ByteType" | "ShortType" | "UnsignedShortType" | "IntType" | "UnsignedIntType" | "FloatType" | "HalfFloatType" | "UnsignedShort4444Type" | "UnsignedShort5551Type" | "UnsignedInt248Type"; set type(v: "UnsignedByteType" | "ByteType" | "ShortType" | "UnsignedShortType" | "IntType" | "UnsignedIntType" | "FloatType" | "HalfFloatType" | "UnsignedShort4444Type" | "UnsignedShort5551Type" | "UnsignedInt248Type"); get mapping(): "UVMapping" | "CubeReflectionMapping" | "CubeRefractionMapping" | "EquirectangularReflectionMapping" | "EquirectangularRefractionMapping" | "CubeUVReflectionMapping"; set mapping(v: "UVMapping" | "CubeReflectionMapping" | "CubeRefractionMapping" | "EquirectangularReflectionMapping" | "EquirectangularRefractionMapping" | "CubeUVReflectionMapping"); get needsUpdate(): boolean; set needsUpdate(v: boolean); get repeat(): import("three/src/math/Vector2").Vector2; set repeat(v: import("three/src/math/Vector2").Vector2); get encoding(): "LinearEncoding" | "sRGBEncoding"; set encoding(v: "LinearEncoding" | "sRGBEncoding"); static get(texture: Texture): Texture3D; protected static _map: Map; } //# sourceMappingURL=Texture3D.d.ts.map