/**
 * 关键字：详情页
 * 新增人：徐友万
 * 完善中
 */
import React from 'react';
declare type DetailItemChildType = {
    label: string;
    value: any;
    span?: number;
    isImg?: boolean;
};
export interface DetailItemType {
    key: string;
    layout?: 'vertical' | 'horizontal';
    column?: number;
    children: Array<DetailItemChildType>;
}
interface IProps {
    value: Array<DetailItemType>;
    prefixCls?: string;
    className?: string;
    style?: React.CSSProperties;
}
declare const Detail: React.FC<IProps>;
export default Detail;
