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