/// <reference types="react" />
import { GLTF } from 'three/examples/jsm/loaders/GLTFLoader';
interface ModelExhibitionProps {
    modelUrl: string;
    modelUpdater?: (g: GLTF) => void;
    backgroundColor?: object;
    fogAttributes?: object;
    environment?: object;
    meshAttributes?: object;
}
export declare const ModelExhibition: ({ modelUrl, environment, modelUpdater, backgroundColor, fogAttributes, meshAttributes, }: ModelExhibitionProps) => JSX.Element;
export {};
