import React from 'react'; import { Scrollbars } from 'react-custom-scrollbars'; export type LazyLoadBCScrollbarProps = { loadMoreItems: () => void; loading: boolean; hasMore?: boolean; children?: React.ReactNode; rtl?: boolean; }; export declare const BCLazyLoadScrollbar: React.ForwardRefExoticComponent>;