import { FC } from 'react'; import './index.less'; interface TitleProps { title: string; onClear: () => void; } declare const Title: FC; export default Title;