import React from 'react'; declare type BackToTopAttributes = React.ComponentPropsWithoutRef<'button'>; export interface BackToTopProps extends Omit { /** * To specify the language of this component */ lang?: string; /** * To set how many percentage from the right viewport / window backToTop button is located */ right?: number; /** * To enable smooth scroll transition to the top */ smooth?: boolean; /** * To set the function that gets triggered when button is clicked */ onClick?: (e: React.MouseEvent) => void; } export {};