UNPKG

369 BTypeScriptView Raw
1import * as React from 'react';
2import type { 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 children?: React.ReactNode;
11}
12declare const Row: React.FC<RowProps>;
13export default Row;