import type { BeanCollection } from '../context/context';
import type { InfiniteRowModel } from '../infiniteRowModel/infiniteRowModel';
import type { IClientSideRowModel } from '../interfaces/iClientSideRowModel';
import type { IServerSideRowModel } from '../interfaces/iServerSideRowModel';
import type { iViewportRowModel } from '../interfaces/iViewportRowModel';
/** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */
export declare function _getClientSideRowModel(beans: BeanCollection): IClientSideRowModel | undefined;
export declare function _getInfiniteRowModel(beans: BeanCollection): InfiniteRowModel | undefined;
/** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */
export declare function _getServerSideRowModel(beans: BeanCollection): IServerSideRowModel | undefined;
/** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */
export declare function _getViewportRowModel(beans: BeanCollection): iViewportRowModel | undefined;
