import { type ReactNode } from "react"; import { type ZoomPanResult } from "./useZoomPan.js"; export declare function useZoom(): ZoomPanResult; /** * Current zoom factor, or 1 when no ZoomProvider is present. * Lets tools convert screen-space coordinates to CSS pixels without requiring the zoom plugin. */ export declare function useZoomLevel(): number; export declare function ZoomProvider({ children }: { children: ReactNode; }): import("react").JSX.Element;