import BufferType from "../../components/buffer/index.js"; import BufferViewType from "../../components/buffer-view/index.js"; import TextureType from "../../components/texture/index.js"; import TextureImageType, { SupportedMimeType } from "../../components/image/index.js"; import TextureInfoType from "../../components/texture-info/index.js"; export declare const buildTextureFromArrayBuffer: (arrayBuffer: ArrayBuffer, mimeType: SupportedMimeType, { Buffer, BufferView, Texture, TextureImage, TextureInfo, }: { Buffer: typeof BufferType; BufferView: typeof BufferViewType; Texture: typeof TextureType; TextureImage: typeof TextureImageType; TextureInfo: typeof TextureInfoType; }) => { texture: TextureType; textureInfo: TextureInfoType; };