import { PropType, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; /** * HlxbHelp 组件 * 用于展示提示信息的工具提示组件,支持多行文本、序号显示和样式自定义 * 通过Tooltip展示内容,点击问号图标触发提示 */ declare const _default: DefineComponent<{ /** * 文本最大宽度 * @default: 600px */ maxWidth: { type: PropType; default: string; }; /** * 是否显示序号 * @default: false */ showIndex: { type: BooleanConstructor; }; /** * 文本字体颜色 * @default: #ffffff */ color: { type: PropType; default: string; }; /** * 文本字体大小 * @default: 14px */ fontSize: { type: PropType; default: string; }; /** * 提示框出现位置 * @default: right */ placement: { type: PropType; default: string; }; /** * 文本内容(支持字符串或字符串数组) */ text: { type: PropType; }; }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{ /** * 文本最大宽度 * @default: 600px */ maxWidth: { type: PropType; default: string; }; /** * 是否显示序号 * @default: false */ showIndex: { type: BooleanConstructor; }; /** * 文本字体颜色 * @default: #ffffff */ color: { type: PropType; default: string; }; /** * 文本字体大小 * @default: 14px */ fontSize: { type: PropType; default: string; }; /** * 提示框出现位置 * @default: right */ placement: { type: PropType; default: string; }; /** * 文本内容(支持字符串或字符串数组) */ text: { type: PropType; }; }> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; export default _default;