import React from 'react';
import { ScrollViewAllProps } from '../../fragments/scroll-view/ScrollView';
import type { SpacingProps } from '../../shared/types';
export type TableScrollViewProps = {
    /**
     * The content of the component.
     */
    children: React.ReactElement<HTMLTableElement>;
};
export type TableScrollViewAllProps = TableScrollViewProps & Omit<React.TableHTMLAttributes<HTMLDivElement>, 'children'> & SpacingProps & ScrollViewAllProps;
declare function TableScrollView(props: TableScrollViewAllProps): import("react/jsx-runtime").JSX.Element;
declare namespace TableScrollView {
    var _supportsSpacingProps: boolean;
}
export default TableScrollView;
