import { LidarState, ColorScheme } from '../core/types';
/**
* Custom hook for managing LiDAR state in React applications.
*
* This hook provides a simple way to track and update the state
* of a LidarControl from React components.
*
* @example
* ```tsx
* function MyComponent() {
* const { state, setPointSize, setColorScheme, toggle } = useLidarState();
*
* return (
*