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