import type { PropType } from 'vue';
import type { ComponentSize } from 'element-plus';
import type { IDescriptionsColumns } from './type';
export declare const descriptionsProps: {
    columns: PropType<IDescriptionsColumns>;
    detail: ObjectConstructor;
    border: BooleanConstructor;
    column: NumberConstructor;
    direction: PropType<"vertical" | "horizontal">;
    size: PropType<ComponentSize>;
    title: StringConstructor;
    extra: StringConstructor;
    align: PropType<"left" | "center" | "right">;
    labelAlign: PropType<"left" | "center" | "right">;
};
