import React from "react"; import { BaseProps } from "../../types/baseProps"; import { Object3DProps } from "../../types/object3DProps"; import { XyzwProp } from "../../types/threeProps"; export declare const NAME = "Sprite"; export interface SpriteProps extends BaseProps, Object3DProps { number?: number; position?: XyzwProp; rotation?: XyzwProp; scale?: XyzwProp; matrixAutoUpdate?: boolean; updateMatrix?: boolean; } /** * 表示基于以三角形为polygon Sprite(多边形网格)的物体的类。 同时也作为其他类的基类 */ export declare const Sprite: React.ComponentType;