import { type FunctionComponent } from 'react'; import { TableWidgetProps } from './types'; /** * The TableWidget component extending the Table component to support widget style options. * * @example * Example of using the `Widget` component to * plot a bar chart of the `Sample ECommerce` data source hosted in a Sisense instance. * Drill-down capability is enabled. * ```tsx * * ``` * @param props - Table Widget properties * @returns Widget component representing a table * @internal */ export declare const TableWidget: FunctionComponent;