import { GridComponentProps } from '../../../GridComponentProps'; import { GridApiRef } from '../../../models/api/gridApiRef'; import { GridRowsProp, GridRowIdGetter } from '../../../models/gridRows'; import { InternalGridRowsState } from './gridRowsState'; export declare function convertGridRowsPropToState(rows: GridRowsProp, totalRowCount?: number, rowIdGetter?: GridRowIdGetter): InternalGridRowsState; export declare const useGridRows: (apiRef: GridApiRef, props: Pick) => void;