import React, { FC } from 'react'; export interface AnnotatedSectionProps { /** 标题 */ title?: React.ReactNode; /** 描述 */ description?: React.ReactNode; } export declare const AnnotatedSection: FC;