import React from 'react'; import type { GridRowData, GridRowMeta } from '../../types'; import type { GridApi } from '../../api'; import type { ListGridProps } from './types'; declare const ListGridImpl: >({ columns, flexColumnId, className, ...props }: ListGridProps, ref: React.ForwardedRef) => React.JSX.Element; /** * **Important:** The Grid relies heavily on receiving immutable data * that changes only when actual changes occur. Even though the examples * will show arrays and objects being passed directly into `columns` * and `rows` props, in your actual application you'll want to ensure * you are passing stable objects into these properties. */ export declare const ListGrid: >(props: ListGridProps & { ref?: React.ForwardedRef; }) => ReturnType; export {}; //# sourceMappingURL=index.d.ts.map