import { default as React } from 'react'; type TableGradientProps = { /** Boolean value; Determines whether to apply custom height classes or not. */ showStickyClasses: boolean; }; declare const TableGradient: ({ showStickyClasses, }: TableGradientProps) => React.JSX.Element; export default TableGradient;