import { TextureLoadOptions } from './_BaseImageLoader';
import { CubeTextureLoader, Texture } from 'three';
import { CoreBaseLoader } from '../_Base';
export declare class CoreCubeTextureLoader extends CoreBaseLoader<string[]> {
    static PARAM_DEFAULT_PREFIX: string;
    static PARAM_DEFAULT_SUFFIX: string;
    loadImage(options: TextureLoadOptions): Promise<Texture>;
    protected _getLoader(options: TextureLoadOptions): Promise<CubeTextureLoader>;
}
