import { PluginBase } from './base/PluginBase'; import { Viewer } from './Viewer'; import { UvAnimation } from './Types'; declare class UvAnimationMgr extends PluginBase { private Mover; getClassName(): string; parseJson(json: Object): void; toJson(): Object; constructor(viewer: Viewer); init(): void; regist(animate: UvAnimation): void; remove(textureName: string, resetUv?: boolean): void; getMover(textureName: string): UvAnimation; has(textureName: string): boolean; } export { UvAnimationMgr };