import { Points } from 'three'; import { Matrix16T, VuerProps } from '../../vuer/interfaces'; type PointCloudProps = VuerProps<{ /** * @dial transform * @dial-cols 2 * @dial-dtype vector3 */ position?: [number, number, number]; /** * @dial transform * @dial-dtype vector3 */ rotation?: [number, number, number]; matrix?: Matrix16T; vertices: Uint16Array; colors?: Uint8Array; /** * @dial appearance * @dial-cols 2 * @dial-dtype number * @dial-min 0.001 * @dial-step 0.001 */ size?: number; /** * @dial appearance * @dial-dtype color */ color?: string | number; }, Points>; export declare function PointCloud({ _ref, _key, position, rotation, vertices, matrix, colors, size, color, ...rest }: PointCloudProps): import("react/jsx-runtime").JSX.Element; export {};