import * as React from 'react'; import { GridRowId } from '../models'; export interface GridRowProps { id: GridRowId; selected: boolean; className: string; rowIndex: number; children: React.ReactNode; } export declare function GridRow(props: GridRowProps): JSX.Element;