import { JSX } from 'react'; import { JsonObject } from 'type-fest'; export interface TableDataProps { /** Data to render in the table */ data: JsonObject[]; /** CSS classes */ className?: string; /** Number of items to display in the table */ limit?: number; /** Table title */ title?: string; /** Show the total number of items beside the title */ showTotal?: boolean; /** Show the remaining item count when setting a `limit` */ showOthers?: boolean; } /** * This component can render an array of JSON objects inside a table. */ export declare function TableData({ data, className, limit, title, showTotal, showOthers, ...rest }: TableDataProps): JSX.Element; export declare namespace TableData { var displayName: string; }