/** * Scrollbar Component * * Thin right-side scrollbar using box-drawing characters. * Shows viewport position within a scrollable list. * * @since v2.7.7 - New visual scrollbar */ import React from 'react'; export interface ScrollbarProps { totalItems: number; visibleItems: number; scrollOffset: number; height: number; trackColor?: string; thumbColor?: string; } declare function ScrollbarBase({ totalItems, visibleItems, scrollOffset, height, trackColor, thumbColor }: ScrollbarProps): React.ReactElement | null; export declare const Scrollbar: React.MemoExoticComponent; export {}; //# sourceMappingURL=Scrollbar.d.ts.map