import { LGRowData } from '../../useLeafyGreenTable'; import { LeafyGreenVirtualTable } from '../../useLeafyGreenVirtualTable'; /** * `useVirtualScrollPadding` returns an object with the `paddingTop` and `paddingBottom` values calculated based on the virtualized table's current scroll state, which will be used to create the effect of virtual scrolling. For non-virtualized tables, both values will default to 0. * * @param isVirtual Whether this is a virtual table * @param virtualTable Available properties and methods return from the Virtualizer instance. * @returns An object containing the top and bottom padding values */ export declare const useVirtualScrollPadding: (isVirtual?: boolean, virtualTable?: LeafyGreenVirtualTable["virtual"]) => { paddingTop: number; paddingBottom: number; }; //# sourceMappingURL=useVirtualScrollPadding.d.ts.map