import React from 'react'; export interface IRow { className?: string; id?: string; style?: React.CSSProperties; [x: string]: any; } export declare const Row: React.FC;