import { GridApi } from 'ag-grid-enterprise';
import { BaseContext } from '../../types';
/**
 * Object returned by `AdaptableReady` event - fired when AdapTable has loaded
 */
export interface AdaptableReadyInfo<TData = any> extends BaseContext {
    /**
     * Underlying AG Grid API
     */
    agGridApi: GridApi<TData>;
}
