import React, { CSSProperties } from 'react';
import './style.scss';
export type BackTopProps = {
    style?: CSSProperties;
    className?: string;
    target: string;
    visibilityHeight?: number;
    children?: React.ReactNode;
};
export default function Backtop(props: BackTopProps): JSX.Element;
