import { TableProps } from '../../../../props'; export declare const DEFAULT_TABLE_ROWS_PER_PAGE = 25; /** How many pages of data will be loaded in one query */ export declare const PAGES_BATCH_SIZE = 10; /** * Component that renders a table with aggregation and pagination. */ export declare const TableComponent: ({ dataSet, dataOptions, styleOptions, filters, onDataReady, }: TableProps) => import("react/jsx-runtime").JSX.Element | null;