import { GridColDef, GridRowId } from '@material-ui/x-grid'; export interface DataRowModel { id: GridRowId; [field: string]: any; } export interface GridData { columns: GridColDef[]; rows: DataRowModel[]; } export declare function getRealData(rowLength: number, columns: any[]): Promise;