/// interface Props { /** * The icon or words that will show on the button, must be wrapped in valid JSX like a span */ delimiter?: string; /** * Classes to be applied to the delimiter itself (wrapped in a span) */ delimiterTheme?: string; /** * When done scrolling, where focus should go for screen readers */ focusEl?: string; /** * Position from the right */ right: number; /** * The height and width of the button */ size?: number; /** * An ID of where to scroll to, if excluded, will be the top of the page */ target?: string | null; /** * Classes applied to the button wrapper */ theme?: string; /** * How far the user has to scroll before the button shows, if excluded, it will always show */ threshold?: number; } declare const ScrollToTop: ({ delimiter, delimiterTheme, focusEl, right, size, target, theme, threshold }: Props) => JSX.Element; export default ScrollToTop;