import { ForwardRefExoticComponent } from 'react';
import { RowProps, TypeMark } from './types';
type IRow = ForwardRefExoticComponent<RowProps> & TypeMark;
declare const RefRow: IRow;
export default RefRow;
