/// import { PivotTableProps } from '../props'; /** * Pivot table with pagination. * * @example * (1) Example of PivotTable from the `Sample ECommerce` data model: * * ```tsx * * ``` * * (2) Example of PivotTable with the predefined sorting configuration: * - Sort "Condition" row by its values in Ascending order. This is equivalent to users clicking on the "Condition" row heading and hit Sort Ascending (A-Z) * - Sort "Category" row by "Total Cost" values under the "columns" values of "Female" (for Gender) and "0-18" (for AgeRange) in Descending order. * This is equivalent to users clicking on the "Total Cost" value heading under "Female" (for Gender) and "0-18" (for AgeRange) and sort "Category (Subtotals)" in Descending (9-1) * * ```tsx * * ``` * * * @param props - Pivot Table properties * @returns Pivot Table component * @group Data Grids * @beta */ export declare const PivotTable: import("react").FunctionComponent; //# sourceMappingURL=pivot-table.d.ts.map