import { Factory, ViewerModule } from '@g.frame/core'; import { Object3D } from 'three'; import { TextComponent } from './TextComponent'; import { ITextComponentOptions } from './TextComponent_interfaces'; export declare class TextComponentFactory extends Factory { __constructor: typeof TextComponent; private components; constructor(); get(params: ITextComponentOptions): TextComponent; onDispose(component: TextComponent, disposedObject: Object3D | ViewerModule): void; update(params: any): any; }