import React from 'react';
interface SkyboxProps {
    rootUrl: string;
    size?: number;
    name?: string;
}
declare const Skybox: React.FC<SkyboxProps>;
export default Skybox;
