import { ThreeElement } from '@react-three/fiber';
import { ComponentPropsWithRef } from 'react';
import { SunDirectionalLight } from '../SunDirectionalLight';
declare module '@react-three/fiber' {
    interface ThreeElements {
        sunDirectionalLight: ThreeElement<typeof SunDirectionalLight>;
    }
}
export interface SunLightProps extends Omit<ComponentPropsWithRef<'sunDirectionalLight'>, 'target'> {
}
export declare const SunLight: import('react').ForwardRefExoticComponent<Omit<SunLightProps, "ref"> & import('react').RefAttributes<SunDirectionalLight>>;
