import * as React from 'react'; export interface IRowProps { children?: any; } export interface IRowDataProps { children?: any; } export declare function Row(props: IRowProps): React.JSX.Element; export declare function Cell(props: IRowDataProps): React.JSX.Element;