import type { LC } from '@use-gpu/live'; import type { ColorLike, VectorLike } from '@use-gpu/core'; import type { ShadowMapLike } from './types.d.mts'; export type DirectionalLightProps = { position?: VectorLike; direction?: VectorLike; color?: ColorLike; intensity?: number; shadowMap?: ShadowMapLike; debug?: boolean; }; export declare const DirectionalLight: LC;