import { CanvasTexture } from '@tinoe/glc'; import { AnimationState } from './spine-core'; export declare class SpineLoader { static load(url: string, atlasUrl: string): Promise<{ updater: (delta: number) => void; texture: CanvasTexture; animationState: AnimationState; }>; }