import { default as React } from 'react'; /** * BackTop 组件的属性接口 */ interface BackTopProps { /** 滚动容器元素获取函数 */ target?: () => HTMLElement; /** 显示阈值,滚动超过此值时显示按钮 */ visibilityHeight?: number; } /** * 自定义 BackTop 组件 * 滚动到顶部按钮,当页面滚动超过指定阈值时显示 */ declare const CustomBackTop: React.FC; export default CustomBackTop;