import { PrimitiveModel3dType } from '../Constants'; import { TModel3dConfig, TModel3dParams, TModel3dResourceConfig, TRawModel3d } from '../Models'; import { Mesh } from 'three'; import { GLTF } from '../../../../../node_modules/@types/three/examples/jsm/loaders/GLTFLoader'; export declare function createPrimitiveModel3d(params: TModel3dParams): Mesh | never; export declare const isPrimitiveModel3dResourceConfig: (params: TModel3dResourceConfig) => boolean; export declare const isPrimitiveModel3dData: (params: TModel3dConfig | TModel3dParams) => boolean; export declare const isPrimitiveModel3dSource: (model3dSource: TRawModel3d | GLTF | PrimitiveModel3dType | string) => model3dSource is PrimitiveModel3dType;