import React, { CSSProperties } from 'react'; import { IconFontType } from '../IconFont/types'; type ThTitleProps = { /** 标题文字 */ title: string[]; /** 自定义类名 */ className?: string; /** icon图标(一般不进行更改) */ icon?: string; /** 提示文字 */ tip?: string; /** IconFont组件的属性 */ iconProps?: Omit; style?: CSSProperties; }; export default function ({ title, tip, icon, className, style, ...restIconProps }: ThTitleProps): React.JSX.Element; export {};