///
import { Breakpoint } from 'antd/lib/_util/responsiveObserve';
import { ReactAddon, ReactControl } from '../../react/base';
import { Dictionary } from '../../base';
export declare const DescriptionItemSize: {
default: string;
middle: string;
small: string;
};
export declare const DescriptionItemLayout: {
horizontal: string;
vertical: string;
};
export declare class Descriptions extends ReactAddon {
bordered?: boolean;
size?: keyof typeof DescriptionItemSize;
title?: ReactControl;
titleControl?: ReactControl;
column?: number | Partial>;
layout?: keyof typeof DescriptionItemLayout;
colon?: boolean;
children?: Dictionary;
onRender?: (() => JSX.Element) | undefined;
}
export declare const DescriptionPropsControl: any;
export declare class DescriptionItem extends ReactAddon {
label?: string;
labelControl?: ReactControl;
span?: number;
children?: ReactControl;
onRender?: (() => JSX.Element) | undefined;
}
export declare const DescriptionItemControl: any;