import { RowProps } from 'antd';
import { FC } from 'react';
import { GRID_ROW, TComponentProps } from '../../Types';
interface IRow extends Omit<RowProps, 'children'> {
    children: TComponentProps[];
}
export interface IGridRow {
    ctype: typeof GRID_ROW;
    props: IRow;
}
declare const GridRow: FC<IGridRow>;
export default GridRow;
