import React from "react";
import "./styles.css";
declare type Props = React.ComponentPropsWithoutRef<"button"> & {
    top?: number;
    smooth?: boolean;
    svgPath?: string;
    viewBox?: string;
    component?: any;
    width?: string;
    height?: string;
};
declare const ScrollToTop: ({ top, className, color, smooth, component, viewBox, svgPath, width, height, ...props }: Props) => JSX.Element;
export default ScrollToTop;
