import { UseInfiniteQueryOptions } from '../../hooks/useInfiniteQuery.js'; import { InternalGrid, type InternalGridProps } from './InternalGrid.js'; export declare const getFieldPriorityByType: (field: any) => 0 | 2 | 1; type GridColumnWidth = 'regular' | 'large'; type GridProps = Pick; declare const Grid: (props: GridProps) => import("react/jsx-runtime").JSX.Element; type VirtualizedGridProps = Pick; declare const VirtualizedGrid: ({ data, ...props }: GridProps) => import("react/jsx-runtime").JSX.Element; type BasedGridProps = Omit & Pick; declare const BasedGrid: ({ query, transformQueryResult, ...props }: BasedGridProps) => import("react/jsx-runtime").JSX.Element; export { InternalGrid, Grid, VirtualizedGrid, BasedGrid }; export type { InternalGridProps, GridProps, VirtualizedGridProps, BasedGridProps, GridColumnWidth, };