import { ExtractPropTypes, PropType } from 'vue'; export type ParamDir = 'v' | 'vo' | ''; export declare const paramProps: { data: { type: PropType | string>; default: () => any[]; }; labelWidth: { type: PropType; default: string; }; dir: { type: PropType; default: string; }; col: { type: PropType; default: string; }; mode: { type: StringConstructor; default: string; }; type: { type: StringConstructor; default: string; }; align: { type: StringConstructor; default: string; }; avg: { type: BooleanConstructor; default: boolean; }; /** * 文字过长时是否换行显示 */ wrap: { type: BooleanConstructor; default: boolean; }; tip: { type: BooleanConstructor; default: boolean; }; flex: BooleanConstructor; }; export type ParamProps = ExtractPropTypes;