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