import React from 'react'; import './title-2.scss'; export interface Title2Props { /** * 标题 */ title?: string; /** * 颜色 */ color?: string; /** * tip颜色 */ tipColor?: string; } declare const Title2: React.FC; export default Title2;