import { CanvasTexture } from '@anov/3d-core'; export interface TextOption { value?: string; fontSize?: number; color?: string; fontWeight?: string; } export declare const createTextCanvas: (option: TextOption) => { width: number; height: number; texture: CanvasTexture; }; export declare const lookAtOnYAxis: (mesh: any, targetPosition: any) => void;