/**
* Composable to track the current zoom level of a VisuallyJS UI in Vue. This returns the current zoom as a ref, and will discover the component from which to get the zoom automatically (a Surface, Paper or Diagram)
*
* ```vue
*
*
*
* Current zoom: {{ zoom }}
*
* ```
*
* @group Hooks
*/
export declare function useZoom(): import("vue").Ref;