import React from 'react'; export interface SpotLightProps { size: number; onClick: ((evt: React.MouseEvent) => void) | null; darkColor: string; zIndex: number; ref: React.RefObject; } declare const SpotLight: ({ size, onClick, darkColor, zIndex, ref }: SpotLightProps) => React.JSX.Element; export { SpotLight };