import React from 'react'; import { NativeProps } from '../_util/withNativeProps'; import { TdBackTopProps } from './type'; export type ThemeList = 'round' | 'half-round' | 'round-dark' | 'half-round-dark'; export type BackTopProps = TdBackTopProps & NativeProps; declare const BackTop: React.FC; export default BackTop;