import { Component } from 'react'; /** * The exports below are ag-Grid components provided at runtime by applications. * * This allows applications to provide Hoist with their duly imported and licensed * versions of ag-Grid. In particular, note that many (but not all) users of Hoist * will be expected to have the enterprise version of ag-Grid. */ export declare let AgGridReact: any; export declare let agGridVersion: any; /** * However Hoist does import the following community-only TYPES to help validate its internal * implementations. */ export type { GridOptions, GridApi, SortDirection, ColDef, ColGroupDef, GetContextMenuItemsParams, GridReadyEvent, IHeaderGroupParams, IHeaderParams, ProcessCellForExportParams, CellClassParams, HeaderClassParams, HeaderValueGetterParams, ICellRendererParams, ITooltipParams, IRowNode, RowClassParams, ValueGetterParams, ValueSetterParams, MenuItemDef, CellPosition, NavigateToNextCellParams, ColumnEvent, ColumnState as AgColumnState, Column as AgColumn, ColumnGroup as AgColumnGroup, AgProvidedColumnGroup, RowDoubleClickedEvent, RowClickedEvent, RowHeightParams, RowDropZoneEvents, CellClickedEvent, CellContextMenuEvent, CellDoubleClickedEvent, CellEditingStartedEvent, CellEditingStoppedEvent, RowDragEndEvent, RowDragEnterEvent, RowDragLeaveEvent, RowDragMoveEvent, RowDragCancelEvent, IsRowValidDropPositionParams, IsRowValidDropPositionResult, RowDropTargetPosition, RowDropZoneParams } from 'ag-grid-community'; export type { CustomCellEditorProps, CustomCellRendererProps, CustomMenuItemProps } from 'ag-grid-react'; export { useGridCellEditor, useGridMenuItem } from 'ag-grid-react'; /** * Expose application versions of ag-Grid to Hoist. * Typically called in the Bootstrap.js. of the application. */ export declare function installAgGrid(ComponentReactWrapper: Component, version: string): void;