import { Matrix16T, VuerProps } from '../../vuer/interfaces'; import { ColorRepresentation, Group } from 'three'; import { MaterialTypes } from '../primitives/three_materials'; import { ThreeElements } from '@react-three/fiber'; import { Object3DProps, TransformProps } from '../../three_transforms/interfaces'; /** * FBX model viewer props * @dial transform */ export type FbxProps = VuerProps; export declare function FbxView({ data, _ref, wireframe, color, matrix, material, materialType, hide, opacity, visible, renderOrder, frustumCulled, ...rest }: FbxProps & { wireframe?: boolean; color?: ColorRepresentation; }): import("react/jsx-runtime").JSX.Element;