import { PropType, ExtractPropTypes } from 'vue'; import { EllipsisTooltip } from './types'; /** * 属性 */ export declare const ellipsisProps: { /** 最大行数 */ maxLine: NumberConstructor; /** 行高 */ lineHeight: (NumberConstructor | StringConstructor)[]; /** 文字提示属性 */ tooltip: { type: PropType; default: () => { original: boolean; }; }; tag: StringConstructor; type: PropType; size: PropType; deleted: BooleanConstructor; underline: BooleanConstructor; strong: BooleanConstructor; italic: BooleanConstructor; icon: PropType; iconProps: PropType; iconStyle: PropType; }; export type EllipsisProps = ExtractPropTypes;