import { ItemActions } from '../../utils/common.js'; import { type GridColumnWidth } from './index.js'; export type InternalGridProps = { data: any[]; fields: Record; virtualized?: boolean; totalCount?: number; onScroll?: (firstVisibleItemIndex: number, lastVisibleItemIndex: number, realFirstVisibleItemIndex: number, realLastVisibleItemIndex: number) => void; select?: any; onSelectChange?: (select?: any) => void; onItemClick?: (item: any) => void; itemActions?: ItemActions; columnWidth?: GridColumnWidth; }; export declare const InternalGrid: ({ data, fields: fieldsProp, virtualized, totalCount, onScroll, select, onSelectChange, onItemClick, itemActions, columnWidth, }: InternalGridProps) => import("react/jsx-runtime").JSX.Element;