import { HoistProps, LayoutProps, TestSupportProps } from '@xh/hoist/core'; import { GridOptions } from '@xh/hoist/kit/ag-grid'; import './AgGrid.scss'; import { AgGridModel } from './AgGridModel'; export interface AgGridProps extends HoistProps, GridOptions, LayoutProps, TestSupportProps { } /** * Low-level escape hatch for direct use of ag-Grid - most applications should use the standard * Hoist {@link Grid} component and {@link GridModel} instead. * * This minimal wrapper around AgGridReact provides Hoist theming/styling, layout support, and * an {@link AgGridModel} for access to the ag-Grid APIs. All ag-Grid Grid Properties can be * passed as props directly. It is intended for advanced use cases that require ag-Grid features * not yet exposed by the managed Hoist Grid layer (most notably pivoting). * * @see Grid * @see GridModel */ export declare const AgGrid: any, agGrid: import("@xh/hoist/core").ElementFactory;