import { HTMLAttributes } from '@wakeadmin/demi'; import { Color } from '../utils'; export interface FatTextOwnProps { /** * 颜色 */ color?: Color; /** * 是否显示下划线,默认为 false */ underline?: boolean; /** * 是否开启溢出显示省略, 默认为 false */ ellipsis?: boolean | number; /** * 是否在省略时显示 tooltip,默认为 true */ showTooltipWhenEllipsis?: boolean; /** * 是否可拷贝,默认为 false * 如果类型为 string,则拷贝 copyable 指定的内容 */ copyable?: boolean | string; /** * 节点类型 */ tag?: any; } export interface FatTextProps extends Omit, FatTextOwnProps { } export declare const FatText: import("@wakeadmin/h").DefineComponent; //# sourceMappingURL=fat-text.d.ts.map