import type { IRowNode } from 'ag-grid-enterprise';
import { BaseContext } from './BaseContext';
/**
 * Context provided for per Row callbacks
 */
export interface AdaptableRowContext<TData = any> extends BaseContext {
    /**
     * The current Row
     */
    rowNode: IRowNode<TData>;
}
