UNPKG

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