import React from 'react'; import type { GridRowData, GridRowMeta } from '../../types'; import type { GridApi, SpreadsheetGridApi } from '../../api'; import type { SpreadsheetGridProps } from './types'; declare const SpreadsheetGridImpl: >({ onRangeSelectionChange, rangeSelection, onRangeCopy, onBulkCellChange, ...props }: SpreadsheetGridProps, ref: React.ForwardedRef) => React.JSX.Element; /** * The `SpreadsheetGrid` component is a specialized, **experimental** version of the `Grid` component * that provides spreadsheet-like functionality, including range selection. * * It is identical to the `Grid` component in most respects with these exceptions: * * - Row selection is not available in this mode (`selectionMode` is forced to `"none"` internally). * - Editing requires double-clicking on an editable cell * * **Important:** This component is currently **experimental**, and will be subject to breaking changes in future releases. * Feel free to try it out and provide feedback to the Design System Team, but avoid using it in production applications at this time. */ export declare const SpreadsheetGrid: >(props: SpreadsheetGridProps & { ref?: React.ForwardedRef; }) => ReturnType; export {}; //# sourceMappingURL=index.d.ts.map