import { Loader, CanvasTexture, LoadingManager } from 'three' export class LottieLoader extends Loader { constructor(manager?: LoadingManager) load( url: string, onLoad: (texture: CanvasTexture) => void, onProgress?: (event: ProgressEvent) => void, onError?: (event: ErrorEvent) => void, ): void loadAsync(url: string, onProgress?: (event: ProgressEvent) => void): Promise setQuality(value: number): void }