UNPKG

@takram/three-atmosphere

Version:
12 lines (11 loc) 514 B
import { ThreeElement } from '@react-three/fiber'; import { ComponentPropsWithRef } from 'react'; import { SkyLightProbe } from '../SkyLightProbe'; declare module '@react-three/fiber' { interface ThreeElements { skyLightProbe: ThreeElement<typeof SkyLightProbe>; } } export interface SkyLightProps extends ComponentPropsWithRef<'skyLightProbe'> { } export declare const SkyLight: import('react').ForwardRefExoticComponent<Omit<SkyLightProps, "ref"> & import('react').RefAttributes<SkyLightProbe>>;