import type { JSX } from 'react'; /** * Renders scroll shadows on the left and right edges of the DataTable * to indicate that there is more content to scroll to. * The shadows are only displayed if there is overflow in the respective direction * and if there are no pinned columns on that side. * */ export declare const DataTableScrollShadow: (props: { hasOverflowLeft: boolean; hasOverflowRight: boolean; }) => JSX.Element | null;