/**
 * DDS Texture Extension
 *
 * Specification: https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Vendor/MSFT_texture_dds
 *
 */
export default class GLTFTextureDDSExtension {
    /**
     *
     * @param {GLTFParser} parser
     * @param {DDSLoader} ddsLoader
     */
    constructor(parser: GLTFParser, ddsLoader: DDSLoader);
    name: string;
    /**
     *
     * @type {GLTFParser}
     */
    parser: GLTFParser;
    ddsLoader: DDSLoader;
    loadTexture(textureIndex: any): any;
}
//# sourceMappingURL=MSFT_texture_dds.d.ts.map