import { type FunctionComponent } from 'react'; import { PivotTableWidgetProps } from './types'; /** * React component extending `PivotTable` to support widget style options. * * @example * Example of using the `PivotTableWidget` component to * plot a pivot table over the `Sample ECommerce` data source hosted in a Sisense instance. * ```tsx * * ``` * * * @param props - Pivot Table Widget properties * @returns Widget component representing a pivot table * @group Dashboards */ export declare const PivotTableWidget: FunctionComponent;