import { type ReactNode } from 'react';
import type { HighTableProps } from '../types.js';
type ScrollProviderProps = Pick<HighTableProps, 'padding'> & {
    /** Child components */
    children: ReactNode;
};
/**
 * Provide the scroll state and logic to the table, through the ScrollContext.
 */
export declare function ScrollProvider({ children, padding }: ScrollProviderProps): import("react/jsx-runtime").JSX.Element;
export {};
