import type { DescriptionsItemProp } from 'ant-design-vue/es/descriptions'; import type { ExtractPropTypes } from 'vue'; import type Descriptions from './descriptions.vue'; export type IDescriptionsItemProp = DescriptionsItemProp & { type?: string; key: string; }; export declare const descriptionsProps: { readonly list: { readonly type: import("vue").PropType; readonly required: false; readonly validator: (val: unknown) => boolean; __epPropKey: true; }; readonly data: import("ll-plus/es/utils").EpPropFinalized>, unknown, unknown, () => {}, boolean>; readonly titleIcon: { readonly type: import("vue").PropType<{ readonly iconName?: string; readonly color?: string; readonly size?: import("ll-plus/es/utils").EpPropMergeType, unknown, unknown>; }>; readonly required: false; readonly validator: (val: unknown) => boolean; __epPropKey: true; }; readonly title: { readonly type: import("vue").PropType; readonly required: false; readonly validator: (val: unknown) => boolean; __epPropKey: true; }; readonly titleSize: import("ll-plus/es/utils").EpPropFinalized; readonly titleColor: import("ll-plus/es/utils").EpPropFinalized; }; export type DescriptionsProps = ExtractPropTypes; export type DescriptionsInstance = InstanceType;