import * as React from 'react'; export interface BackTopProps { visibilityHeight?: number; onClick?: React.MouseEventHandler; target?: () => HTMLElement | Window; prefixCls?: string; className?: string; duration?: number; style?: React.CSSProperties; } declare const BackTop: React.FC; export default BackTop;