@ui5/webcomponents-react
Version:
React Wrapper for UI5 Web Components and additional components
12 lines (11 loc) • 497 B
TypeScript
import type { MutableRefObject } from 'react';
import type { ClassNames } from '../types/index.js';
interface VerticalScrollbarProps {
internalRowHeight: number;
tableRef: MutableRefObject<HTMLDivElement>;
tableBodyHeight: number;
scrollContainerRef: MutableRefObject<HTMLDivElement>;
classNames: ClassNames;
}
export declare const VerticalScrollbar: import("react").ForwardRefExoticComponent<VerticalScrollbarProps & import("react").RefAttributes<HTMLDivElement>>;
export {};