import { RowId } from '../types/row.type'; import { DataGridProps } from '../DataGrid.types'; export declare const useExpandedRows: (props: Pick, "initialState" | "expandedRows" | "onExpandedRowsChange">) => { expandedRows: any[] | readonly RowId[]; onExpandedRowsChange: (expandedRows: Array) => void; };