/** * A hook to handle zoom level of map * * If you want to make custom zoom level controls, this is the hook you need * * Make sure to use this hook inside of Map context */ export declare const useZoom: () => { zoomIn: () => void; zoomOut: () => void; setZoom: (zoom: number, effect?: boolean | undefined) => void; };