import { Texture } from "three";
import { type GLTFLoaderPlugin, GLTFParser } from "three/examples/jsm/loaders/GLTFLoader.js";
export declare class NEEDLE_pmrem implements GLTFLoaderPlugin {
    get name(): string;
    private parser;
    constructor(parser: GLTFParser);
    loadTexture(textureIndex: number): Promise<Texture> | null;
    static postprocess(tex: Texture): Texture;
}
