UNPKG

332 BTypeScriptView Raw
1import * as React from 'react';
2import { DescriptionsItemProps } from './Item';
3export interface RowProps {
4 prefixCls: string;
5 vertical: boolean;
6 row: React.ReactElement<DescriptionsItemProps>[];
7 bordered?: boolean;
8 colon: boolean;
9 index: number;
10}
11declare const Row: React.FC<RowProps>;
12export default Row;