import React from 'react';
import type { INodeMaterial } from '../../interface';
import type { iNode } from '../../utils';
export interface EarthProps {
    material: INodeMaterial;
    materialChange?: (inode: iNode) => void;
    exportScene?: (renderInfo: any) => void;
}
declare const Earth: (props: EarthProps) => React.JSX.Element;
export default Earth;
