/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { GridHandle } from '@progress/kendo-react-grid'; import { DataRow } from '@progress/kendo-charts'; /** * Maps the Grid selectedState to a more general DataRows type you can display in the Chart Wizard. * * The selectedKeys can be either row keys or cell keys. * * @returns DataRow array that you can pass to `getWizardDataFromDataRows` to bind the Chart Wizard. */ export declare function getGridSelectedRows(args: { /** * Specifies the Grid handle instance. */ grid: GridHandle | null; /** * Sets the data array from the Grid. */ data: any[]; /** * Configures the current selection state. */ selectedState: { [id: string]: boolean | number[]; }; /** * Sets the key property for identifying data items. */ dataItemKey: string; }): DataRow[];