import * as React from 'react'; import { HTMLProps } from '../utils/utilityTypes'; import type { BaseBackTopProps } from './interface'; export interface BackTopCssVars { '--right'?: React.CSSProperties['right']; '--bottom'?: React.CSSProperties['bottom']; } export interface BackTopProps extends BaseBackTopProps, HTMLProps { onClick?: (event: React.MouseEvent) => void; } declare const BackTop: React.FC; export default BackTop;