import React from 'react'; import { Control as LeafletControl } from 'leaflet'; declare const useControl: ({ createControl, ref, }: { createControl: () => Control | undefined; ref: React.ForwardedRef; }) => { map: import("leaflet").Map; control: Control | undefined; }; export default useControl;