//#region src/components/gantt/hooks/use-total-data-region-thresholds/index.d.ts type UseTotalDataRegionThresholdsProps = { totalRowsCount: number; verticalScrollElement: HTMLDivElement | null; }; /** * A hook that notifies the Gantt component consumer when certain thresholds are * reached in the total data region currently being virtualized. * * This allows the consumer to perform actions when the rendered region reaches * certain thresholds (like fetching additional data to provide to the Gantt component). */ declare function useTotalDataRegionThresholds({ totalRowsCount, verticalScrollElement }: UseTotalDataRegionThresholdsProps): void; //#endregion export { useTotalDataRegionThresholds }; //# sourceMappingURL=index.d.ts.map