import { TextureCubeFace } from '@tinoe/gla'; import { GLCTexture } from '@tinoe/glc'; export declare type TextureCubeLoaderParams = { url: string; face: TextureCubeFace; }[]; export declare class TextureCubeLoader { static load(datas: TextureCubeLoaderParams): Promise; }