import React, { HTMLProps, ReactNode } from "react";
type TableBaseProps = {
    children: ReactNode;
    tableBaseProps?: HTMLProps<HTMLDivElement>;
};
/**
 * TableBase is the container component for the table itself
 * Provides scrolling behavior and dimensions
 * Updated with dark mode support
 */
declare const TableBase: React.FC<TableBaseProps>;
export default TableBase;
