import type { FC } from 'react'; import './index.less'; interface DocsItemProps { title: string; tips: string[]; type: 'define' | 'example' | 'description'; functorType: string; } declare const DocsItem: FC; export default DocsItem;