import React from "react"; /** * This component tracks the scrolling of the table to enable row * virtualization. When the table changes size or scrolls, we need to change * which rows are rendered * This also adds shadows on the left and right sides of the table when content * is hidden and can be scrolled to */ export declare const Scroller: ({ children }: { children: React.ReactNode; }) => JSX.Element;