/// import { TableProps } from '../../../../props'; /** * Table with aggregation and pagination. * * @example * Table displaying year, condition, and total revenue from the Sample ECommerce data model. * * ```tsx * import { Table } from '@sisense/sdk-ui'; * import { measureFactory } from '@sisense/sdk-data'; * import * as DM from './sample-ecommerce'; * * const CodeExample = () => ( * * ); * * export default CodeExample; * ``` * * * * @param props - Table properties * @returns Table component * @group Data Grids */ export declare const Table: import("react").FunctionComponent; 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;