import { type JSX } from 'react'; import type { IRow } from './types'; export interface IRowProps { rowModel: IRow; } export declare const Row: (props: IRowProps) => JSX.Element;