import React from 'react';
import type { INodeMaterial } from '../interface';
import type { iNode } from '../utils';
export interface IProps {
    material: INodeMaterial;
    materialChange?: (inode: iNode) => void;
    exportScene?: (renderInfo: any) => void;
}
declare const Model: React.FC<{
    material: INodeMaterial;
    materialChange?: (inode: iNode) => void;
    exportScene?: (renderInfo: any) => void;
}>;
export default Model;
