import React, { Component } from 'react'; import { AgGridReactProps, AgReactUiProps } from './shared/interfaces'; import { ColumnApi, GridApi } from 'ag-grid-community'; export declare class AgGridReact extends Component | AgReactUiProps, {}> { /** Grid Api available after onGridReady event has fired. */ api: GridApi; /** * @deprecated v31 - The `columnApi` has been deprecated and all the methods are now present of the `api`. * Please use the `api` instead. */ columnApi: ColumnApi; private apiListeners; registerApiListener(listener: (api: GridApi) => void): void; private setGridApi; componentWillUnmount(): void; render(): React.JSX.Element; }