import { DescriptionsProps } from 'antd'; import './DDescriptions.less'; import { PropsTypes } from '@orca-fe/deye-typings'; export declare type DDescriptionStructType = { key: string; name: string; label?: string; span?: number; }; export interface DDescriptionsProps extends DescriptionsProps { items?: DDescriptionStructType[]; value?: Record; } declare const DDescriptions: { (props: DDescriptionsProps): JSX.Element; title: string; propsDef: PropsTypes[]; }; export default DDescriptions;