import type { ExtractPropTypes, PropType, SlotsType } from 'vue'; export declare const descriptionsProps: { data: { type: PropType; default: () => never[]; }; labelAlign: { type: PropType<"left" | "center" | "right">; default: string; }; border: { type: BooleanConstructor; default: boolean; }; colon: { type: BooleanConstructor; default: boolean; }; }; export type DescriptionsProps = ExtractPropTypes; export interface DescriptionsSlots { default: {}; } export declare const descriptionsSlots: SlotsType; export declare const descriptionsEmits: {}; export type DescriptionsEmits = typeof descriptionsEmits; export interface DescriptionsExpose { }