import React from 'react'; import type { PropsWithChildren, CSSProperties } from 'react'; import './hexagon.scss'; interface HexagonSpotlightProps { style?: CSSProperties; resize?: boolean; color?: string; radius?: number; theme?: 'dark' | 'light'; } declare const HexagonSpotlight: React.FC>; export default HexagonSpotlight;