import type { Breakpoint } from '@antdv/ui/es/types'; import type { CSSProperties, ExtractPropTypes, HTMLAttributes, PropType } from 'vue'; export declare const DescriptionsItemProps: { prefixCls: StringConstructor; label: any; span: NumberConstructor; }; export declare function descriptionsItemProp(): { prefixCls: StringConstructor; label: any; labelStyle: { type: PropType; default: () => {}; }; contentStyle: { type: PropType; default: () => {}; }; span: { type: NumberConstructor; default: number; }; }; export declare function descriptionsProps(): { prefixCls: StringConstructor; bordered: { type: BooleanConstructor; default: any; }; size: { type: PropType<"default" | "small" | "middle">; default: string; }; title: any; extra: any; column: { type: PropType>>; default: () => number | Partial>; }; layout: PropType<"horizontal" | "vertical">; colon: { type: BooleanConstructor; default: any; }; labelStyle: { type: PropType; default: () => {}; }; contentStyle: { type: PropType; default: () => {}; }; }; export type DescriptionsProps = HTMLAttributes & Partial>>; export type DescriptionsItemProp = Partial>>;