import * as React from 'react'; export interface BodyRowProps { /** The row index */ index: number; /** Row Style */ style?: React.CSSProperties; } declare const BodyRow: React.FunctionComponent; export default BodyRow;