import type { LC } from '@use-gpu/live'; import type { ColorLike, VectorLike } from '@use-gpu/core'; import type { ShadowMapLike } from './types.d.cts'; export type SpotLightProps = { position?: VectorLike; direction?: VectorLike; color?: ColorLike; intensity?: number; cutoff?: number; fov?: number; feather?: number; shadowMap?: ShadowMapLike; debug?: boolean; infinite?: boolean; }; export declare const SpotLight: LC;