export interface ScrollbarMeasurements { /** Current height of the scrollbar */ height: number; /** Current width of the scrollbar */ width: number; } declare const useScrollbarSize: () => ScrollbarMeasurements; export default useScrollbarSize;