import { Object3D, AnimationClip } from "three"; export declare enum ModelType { 'FBX' = 0, 'GLTF' = 1, 'GLB' = 2, 'OTHER' = 3 } export interface ILoaderParameter { url: string; modelType: ModelType; decoderPath?: string; loadProgress?: (progress: number) => void; loadEnd?: (object: Object3D, animations?: AnimationClip[]) => void; indexdb?: boolean; }