import { Polygon, PolylineOptions } from 'leaflet'; import type { EventHandler } from '../../../../types'; import type { PolygonProps } from '../types'; declare const useEvents: (props?: Omit | undefined) => { options: PolylineOptions; events: Record>>; }; export default useEvents;